BGPT MCP
Search scientific papers with structured experimental data extracted from full-text studies. Returns 25+ fields per paper including methods, results, sample sizes, limitations, and quality scores.
BGPT MCP API
Search scientific papers from Claude, Cursor, or any MCP-compatible AI tool.
BGPT is a remote Model Context Protocol (MCP) server that gives AI assistants access to a database of scientific papers built from full-text studies. Unlike typical search tools that return titles and abstracts, BGPT extracts raw experimental data — methods, results, conclusions, quality scores, sample sizes, limitations, and 25+ metadata fields per paper.
Quick Start
Add BGPT to your MCP client — no API key required for the free tier (50 searches).
Option A: Direct SSE Connection (Recommended)
Most modern MCP clients support direct SSE connections:
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"bgpt": {
"url": "https://bgpt.pro/mcp/sse"
}
}
}
Cursor (.cursor/mcp.json):
{
"mcpServers": {
"bgpt": {
"url": "https://bgpt.pro/mcp/sse"
}
}
}
Cline / Roo Code / Windsurf — same config:
{
"mcpServers": {
"bgpt": {
"url": "https://bgpt.pro/mcp/sse"
}
}
}
Option B: Via npx (for clients that need a local command)
{
"mcpServers": {
"bgpt": {
"command": "npx",
"args": ["-y", "bgpt-mcp"]
}
}
}
Option C: Install globally
npm install -g bgpt-mcp
Then add to your MCP config:
{
"mcpServers": {
"bgpt": {
"command": "bgpt-mcp"
}
}
}
Any MCP Client
Connect to the SSE endpoint:
https://bgpt.pro/mcp/sse
That's it. No Docker, no build step.
What You Get
BGPT provides one tool: search_papers
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | Yes | Search terms (e.g. "CRISPR gene editing efficiency") |
num_results | integer | No | Number of results to return (1–100, default 10) |
days_back | integer | No | Only return papers published within the last N days |
api_key | string | No | Your Stripe subscription ID for paid access |
What comes back
Each paper result includes 25+ fields, extracted from the full text:
- Title & DOI — standard identifiers
- Methods — experimental design, techniques used
- Results — raw findings, measurements, statistical outcomes
- Conclusions — what the authors determined
- Quality scores — methodological rigor assessment
- Sample sizes — participant/specimen counts
- Limitations — acknowledged weaknesses
- And more — funding, conflicts of interest, study type, etc.
Example
Ask your AI assistant:
"Search for recent papers on CAR-T cell therapy response rates"
BGPT returns structured experimental data your AI can reason over — not just a list of titles.
Pricing
| Tier | Cost | Details |
|---|---|---|
| Free | $0 | 50 searches, no API key needed |
| Pay-as-you-go | $0.01/result | Billed per result returned. Get an API key at bgpt.pro/mcp |
How It Works
Your AI Assistant (Claude, Cursor, etc.)
│
│ MCP Protocol (SSE)
▼
BGPT MCP Server
https://bgpt.pro/mcp/sse
│
│ search_papers(query, ...)
▼
BGPT Paper Database
(full-text extracted data)
│
▼
Structured Results
(methods, results, quality scores, 25+ fields)
BGPT is a hosted remote server — your MCP client connects via Server-Sent Events (SSE). No local installation needed.
Use Cases
- Literature reviews — Ask your AI to survey a topic with real experimental data
- Evidence synthesis — Ground AI responses in actual study findings
- Research assistance — Find papers by methodology, outcome, or recency
- Fact-checking — Verify claims against published experimental results
- Grant writing — Quickly gather supporting evidence for proposals
Configuration Reference
Server Details
| Field | Value |
|---|---|
| Protocol | MCP (Model Context Protocol) |
| Transport | SSE (Server-Sent Events) |
| Endpoint | https://bgpt.pro/mcp/sse |
| Authentication | None required (free tier) / Stripe API key (paid) |
Full MCP Client Config
{
"mcpServers": {
"bgpt": {
"url": "https://bgpt.pro/mcp/sse"
}
}
}
Documentation
Full documentation, FAQ, and setup guides: bgpt.pro/mcp
Support
- Email: contact@bgpt.pro
- Issues: GitHub Issues
- API Key / Billing: bgpt.pro/mcp
Contributing
See CONTRIBUTING.md for guidelines on reporting bugs, requesting features, and contributing.
License
This repository (documentation, examples, and configuration files) is licensed under the MIT License.
The BGPT MCP API service itself is operated by BGPT and subject to its own terms of service.
Related Servers
G-Search MCP
A Google search server using Playwright for parallel keyword searches.
SerpApi MCP
SerpApi MCP Server for Google and other search engine results
Volcengine Knowledge Base MCP
Provides knowledge base search and dialogue completion using the Volcengine Knowledge Base service. Requires external credential configuration.
ProPublica MCP Server
Search and analyze nonprofit organizations' Form 990 data using ProPublica's Nonprofit Explorer API.
Librarian
A server to query Wikipedia and automatically fact-check information for any LLM with a compatible MCP client.
MCP Research Friend
Research tools, including a Sqlite-backed document stash
Copus
Search human-curated content recommendations from real people who explain why resources are valuable - The Internet Treasure Map
Weather MCP Server
Query 24-hour weather forecasts and city information by city name or coordinates.
eBird MCP Server
Query rich bird observation data from the eBird API using natural language.
Local RAG Backend
A local RAG backend powered by Docker Compose, supporting various document formats for search.