CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

BGPT - Scientific Paper Search

connerlambden/bgpt-mcp
26SSE, HTTPregistry active
Summary

This connects Claude or any MCP client to a database of full-text scientific papers, exposing a search_papers tool that returns structured experimental data instead of just abstracts. You get 25+ fields per paper: methods, results, conclusions, quality scores, sample sizes, and limitations. It runs as a remote service over SSE or streamable HTTP, so there's no local setup. The same API is available as a plain REST endpoint if you're calling from Python notebooks or scripts. Free tier gives you 50 results, then it's pay-as-you-go at two cents per result. Useful when you need your AI to reason over actual experimental findings rather than surface-level metadata, or when you're building literature reviews and evidence synthesis workflows.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

BGPT MCP + REST API

Search scientific papers from Claude, Cursor, any MCP-compatible AI tool, or plain Python.

BGPT is a remote Model Context Protocol (MCP) server and traditional JSON/HTTP API that gives AI assistants and Python apps 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


Evidence Demo

If you want to see why BGPT is different from ordinary paper search, start here:

  • EVIDENCE_DEMO.md — a claim-interrogation demo for GLP-1 alcohol craving
  • examples/bgpt_plotly_evidence_dashboard.py — generate a Plotly HTML dashboard with study methods, samples, limitations, conflicts, data availability, blind spots, and falsifiability prompts
  • PROMPT_GALLERY.md — prompts for scientific RAG, literature review agents, and evidence dashboards

The core idea: BGPT helps an AI agent ask what would weaken this scientific claim? before it summarizes the literature.


Quick Start

Use BGPT from Python, REST, or an MCP client — no API key required for the free tier (50 free results).

Option A: Python / REST API

Call the HTTP API directly from any Python script or notebook:

import requests


def search_bgpt(query, num_results=10, days_back=None, api_key=None):
    payload = {"query": query, "num_results": num_results}
    if days_back is not None:
        payload["days_back"] = days_back
    if api_key:
        payload["api_key"] = api_key

    response = requests.post(
        "https://bgpt.pro/api/mcp-search",
        json=payload,
        timeout=30,
    )
    response.raise_for_status()
    return response.json()["results"]


papers = search_bgpt("CRISPR delivery neurons", num_results=5)
print(papers[0]["title"])

Option B: Remote MCP Connection

Most modern MCP clients support direct remote connections. BGPT offers two transports:

TransportEndpoint
SSEhttps://bgpt.pro/mcp/sse
Streamable HTTPhttps://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/stream instead.

Option C: Via npx (for clients that need a local command)

{
  "mcpServers": {
    "bgpt": {
      "command": "npx",
      "args": ["-y", "bgpt-mcp"]
    }
  }
}

Option D: Install globally

npm install -g bgpt-mcp

Then add to your MCP config:

{
  "mcpServers": {
    "bgpt": {
      "command": "bgpt-mcp"
    }
  }
}

Any MCP Client

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.


What You Get

BGPT exposes the same scientific-paper search through an MCP tool and a REST endpoint.

REST endpoint

POST https://bgpt.pro/api/mcp-search

JSON fieldTypeRequiredDescription
querystringYesSearch terms (e.g. "CRISPR gene editing efficiency")
num_resultsintegerNoNumber of results to return (1-100, default 10)
days_backintegerNoOnly return papers published within the last N days
api_keystringNoYour Stripe subscription ID for paid access

MCP tool

search_papers

ParameterTypeRequiredDescription
querystringYesSearch terms (e.g. "CRISPR gene editing efficiency")
num_resultsintegerNoNumber of results to return (1-100, default 10)
days_backintegerNoOnly return papers published within the last N days
api_keystringNoYour 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

TierCostDetails
Free$050 free results, no API key needed
Pay-as-you-go$0.02/resultBilled per result returned. Get an API key at bgpt.pro/mcp

How It Works

Your AI Assistant (Claude, Cursor, etc.)
        │
        │  MCP Protocol (SSE or Streamable HTTP)
        ▼
   BGPT MCP / REST API
   https://bgpt.pro/mcp/sse
   https://bgpt.pro/mcp/stream
   https://bgpt.pro/api/mcp-search
        │
        │  search_papers(query, ...)
        ▼
   BGPT Paper Database
   (full-text extracted data)
        │
        ▼
   Structured Results
   (methods, results, quality scores, 25+ fields)

BGPT is a hosted remote service — your MCP client connects via SSE or Streamable HTTP, or your app calls the REST endpoint directly. No Docker, scraping, or local index required.


Use Cases

  • Literature reviews — Ask your AI to survey a topic with real experimental data
  • Python notebooks — Pull recent paper evidence into analysis workflows with one HTTP call
  • 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

FieldValue
ProtocolMCP (Model Context Protocol)
TransportSSE (Server-Sent Events) or Streamable HTTP
SSE Endpointhttps://bgpt.pro/mcp/sse
Streamable HTTP Endpointhttps://bgpt.pro/mcp/stream
REST Endpointhttps://bgpt.pro/api/mcp-search
AuthenticationNone required (free tier) / Stripe API key (paid)

Full MCP Client Config

{
  "mcpServers": {
    "bgpt": {
      "url": "https://bgpt.pro/mcp/sse"
    }
  }
}

Related MCP

From the same author — news/markets bias scoring on one side, structured scientific evidence on the other:

  • Helium MCP — 37-dimensional news bias scoring, market data, ML options pricing (demo)
  • helium-mcp-cookbook — runnable Python recipes for Helium's REST surface

Listed On

BGPT is indexed on several API and MCP directories (helps discovery; links are dofollow where noted):

  • bio.tools — life-science software registry (biotools:bgpt)
  • CLIRank — API quality score
  • Glama MCP — MCP server directory
  • Postman API Network — runnable collection
  • Smithery — MCP registry
  • cursor.directory — Cursor MCP listing

Documentation

Full documentation, FAQ, and setup guides: bgpt.pro/mcp

OpenAPI spec for the REST endpoint: openapi.yaml

Additional REST discovery assets:

  • apis.json — machine-readable API discovery metadata
  • llms.txt — AI-crawler and agent-friendly product context
  • AGENTS.md — integration guidance for AI agents
  • USE_CASES.md — RAG, systematic review, notebook, and dashboard use cases
  • PROMPT_GALLERY.md — ready-to-use prompts for scientific RAG, agents, integrity checks, and visual demos
  • CITATION.cff and codemeta.json — research-software metadata
  • examples/bgpt_rest_python.py — Python requests example
  • examples/bgpt_rest_javascript.mjs — JavaScript fetch example
  • examples/bgpt_rest_curl.sh — cURL example
  • examples/bgpt_plotly_evidence_dashboard.py — Plotly evidence dashboard demo
  • examples/postman_collection.json — importable Postman collection

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.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Search & Web CrawlingData & Analytics
Registryactive
TransportSSE, HTTP
UpdatedApr 5, 2026
View on GitHub

Related Search & Web Crawling MCP Servers

View all →
Google Search

com.mcparmory/google-search

Scrape Google search results with SERP data, ads, and knowledge panels
25
Brave Search

io.github.pipeworx-io/brave-search

Brave Search MCP — independent web index (no Google/Bing dependency)
Serper Search and Scrape

marcopesani/mcp-server-serper

Serper MCP Server supporting search and webpage scraping
154
Brave Search Mcp Server

brave/brave-search-mcp-server

Brave Search MCP Server: web results, images, videos, rich results, AI summaries, and more.
1.2k
Google Search Console

com.mcparmory/google-search-console

Query search analytics, manage sitemaps, and inspect site URLs and status
25
Google Search Console

acamolese/google-search-console-mcp

Google Search Console MCP server: SEO audits, performance queries, URL inspection, indexing checks.
3