loading…
Search for a command to run...
loading…
Search Daily-Updated Scientific Data
Search Daily-Updated Scientific Data
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.
MCP Compatible npm License: MIT bgpt-mcp MCP server
Add BGPT to your MCP client — no API key required for the free tier (50 free results).
Most modern MCP clients support direct remote connections. BGPT offers two transports:
| Transport | Endpoint |
|---|---|
| SSE | https://bgpt.pro/mcp/sse |
| Streamable HTTP | https://bgpt.pro/mcp/stream |
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"
}
}
}
Claude Code (CLI):
claude mcp add bgpt --transport sse https://bgpt.pro/mcp/sse
Cline / Roo Code / Windsurf — same config:
{
"mcpServers": {
"bgpt": {
"url": "https://bgpt.pro/mcp/sse"
}
}
}
Tip: If your client supports Streamable HTTP, you can use
https://bgpt.pro/mcp/streaminstead.
{
"mcpServers": {
"bgpt": {
"command": "npx",
"args": ["-y", "bgpt-mcp"]
}
}
}
npm install -g bgpt-mcp
Then add to your MCP config:
{
"mcpServers": {
"bgpt": {
"command": "bgpt-mcp"
}
}
}
Connect to either endpoint:
SSE: https://bgpt.pro/mcp/sse
Streamable HTTP: https://bgpt.pro/mcp/stream
That's it. No Docker, no build step.
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 |
Each paper result includes 25+ fields, extracted from the full text:
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.
| Tier | Cost | Details |
|---|---|---|
| Free | $0 | 50 free results, no API key needed |
| Pay-as-you-go | $0.02/result | Billed per result returned. Get an API key at bgpt.pro/mcp |
Your AI Assistant (Claude, Cursor, etc.)
│
│ MCP Protocol (SSE or Streamable HTTP)
▼
BGPT MCP Server
https://bgpt.pro/mcp/sse
https://bgpt.pro/mcp/stream
│
│ 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 SSE or Streamable HTTP. No local installation needed.
| Field | Value |
|---|---|
| Protocol | MCP (Model Context Protocol) |
| Transport | SSE (Server-Sent Events) or Streamable HTTP |
| SSE Endpoint | https://bgpt.pro/mcp/sse |
| Streamable HTTP Endpoint | https://bgpt.pro/mcp/stream |
| Authentication | None required (free tier) / Stripe API key (paid) |
{
"mcpServers": {
"bgpt": {
"url": "https://bgpt.pro/mcp/sse"
}
}
}
Full documentation, FAQ, and setup guides: bgpt.pro/mcp
See CONTRIBUTING.md for guidelines on reporting bugs, requesting features, and contributing.
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.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"bgpt": {
"command": "npx",
"args": []
}
}
}