streamable-httpMITupdated 3mo ago
Search 340 million deduplicated academic papers from Claude Desktop, Claude Web, ChatGPT, Cursor, VS Code Copilot, or any MCP-compatible tool. Covers 15+ academic databases β all cross-linked through a biomedical knowledge graph with 1.3M+ entities and 109M+ paper connections.
What can you do with nobleblocks mcp?
NobleBlocks MCP Server
Search 340 million deduplicated academic papers from Claude Desktop, Claude Web, ChatGPT, Cursor, VS Code Copilot, or any MCP-compatible tool. Covers 15+ academic databases β all cross-linked through a biomedical knowledge graph with 1.3M+ entities and 109M+ paper connections.
This is a thin authenticated client β all indexing, ranking, vector search, and knowledge graph traversal runs on the NobleBlocks backend. You get fast results without managing any infrastructure.
What's in the index
| Source | Papers | Updates |
|---|---|---|
| OpenAlex | ~250M works | Daily |
| Semantic Scholar | ~220M papers | Weekly |
| PubMed / MEDLINE | ~41M articles | Daily |
| Europe PMC | ~43M articles | Daily |
| Crossref | Incremental | Daily |
| arXiv | ~2.5M preprints | Daily |
| bioRxiv / medRxiv | ~1K/day | Daily |
| ClinicalTrials.gov | ~582K trials | Daily |
| Unpaywall | OA link resolution | Daily |
| DBLP | Computer science | Via OpenAlex |
| CORE | ~37M open access outputs | Coming soon |
| BASE (Bielefeld) | Discovery metadata | Via OpenAlex |
| DOAJ | Open access journals | Via Crossref |
| Papers with Code | ML/AI benchmarks | Weekly |
| Retraction Watch | Retraction status | Weekly |
| USPTO / EPO patents | ~9.3M patent-paper links | Daily |
| β¦and others |
All sources are cross-deduplicated on DOI, PMID, and arXiv ID. Total unique records after dedup: 340M+ (June 2026).
Knowledge graph
The search backend also maintains a biomedical knowledge graph (1.3M+ entities, 109M+ paper links) with genes, diseases, drugs, proteins, institutions, researchers, topics, genetic variants, and drug-target-disease relationships sourced from PubTator Central, DisGeNET, ChEMBL, UniProt, ROR, ORCID, Open Targets, and others.
Tools
| Tool | What it does |
|---|---|
search_papers |
Full-text + semantic hybrid search with year/citation/source filters |
get_paper |
Fetch metadata by DOI, PMID, arXiv ID, or OpenAlex ID |
find_similar |
Find papers related by meaning, not just keyword matching |
get_citation_graph |
Citation network β references and citing papers |
search_by_entity |
Find papers linked to a gene, drug, disease, or institution via the KG |
create_literature_review |
AI-generated structured lit review with citations (Pro) |
Get an API key
All usage requires a free NobleBlocks account. Sign up takes 30 seconds:
- Go to nobleblocks.com/signup
- Create an account (email or Google)
- Navigate to Settings > API Keys and generate a key
Free plan: 100 searches/day, 5 similar/day, citation graph access. Pro plan: 5,000 searches/day, literature review generation, priority support.
Quick start (Remote β no install needed)
The easiest way to get started is the remote connector β no API keys, no Python install:
- Open claude.ai β Settings β Connectors (or Integrations)
- Click "Add" and paste:
https://mcp.nobleblocks.com/mcp - Sign in with your NobleBlocks account
- Ask Claude: "Search for papers on CRISPR gene therapy"
Install (Local)
uvx nobleblocks-mcp
Configure Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"nobleblocks": {
"command": "nobleblocks-mcp",
"env": {
"NOBLEBLOCKS_API_KEY": "nb_pk_your_key_here"
}
}
}
}
Restart Claude Desktop. The NobleBlocks tools will appear in the tools list.
Configure VS Code Copilot
Add to .vscode/mcp.json in your project:
{
"servers": {
"nobleblocks": {
"command": "nobleblocks-mcp",
"env": {
"NOBLEBLOCKS_API_KEY": "nb_pk_your_key_here"
}
}
}
}
Configure Cursor / Cline / Continue
Point your editor's MCP settings at the nobleblocks-mcp command with stdio transport. Set NOBLEBLOCKS_API_KEY in the environment.
CLI usage
You can also search directly from the terminal:
# Search papers
nobleblocks search "CRISPR base editing" --limit 5 --min-year 2022
# Get a specific paper
nobleblocks get 10.1038/s41586-020-2649-2
# Find similar papers
nobleblocks similar "Attention Is All You Need"
# Citation graph
nobleblocks citations 10.1038/s41586-020-2649-2 --direction both
All CLI commands require NOBLEBLOCKS_API_KEY set in your environment (or pass --key).
Environment variables
| Variable | Default | Description |
|---|---|---|
NOBLEBLOCKS_API_KEY |
(required) | Your API key from nobleblocks.com |
NOBLEBLOCKS_API_BASE |
https://www.nobleblocks.com |
API endpoint |
LOG_LEVEL |
INFO |
Logging verbosity |
Examples
Once configured, ask naturally in Claude/Cursor:
"Find the most-cited papers on CRISPR base editing from 2022-2024"
"Show me papers similar to 'Attention Is All You Need' by Vaswani"
"What papers cite DOI 10.1038/s41586-020-2649-2?"
"Find papers linking BRCA1 to drug resistance"
"Generate a literature review on CAR-T cell therapy in solid tumors"
Development
git clone https://github.com/nobleblocks/nobleblocks-mcp.git
cd nobleblocks-mcp
pip install -e .
# Test with MCP Inspector
npx @modelcontextprotocol/inspector nobleblocks-mcp
License
MIT β see LICENSE.
Built by NobleBlocks β the academic research platform for the AI era.
Install
Add nobleblocks mcp to your client. Pick the one you use.
claude mcp add --transport http nobleblocks-mcp https://mcp.nobleblocks.com/mcpcodex mcp add nobleblocks-mcp --url https://mcp.nobleblocks.com/mcp{
"mcpServers": {
"nobleblocks-mcp": {
"url": "https://mcp.nobleblocks.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"nobleblocks-mcp": {
"type": "http",
"url": "https://mcp.nobleblocks.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"nobleblocks-mcp": {
"url": "https://mcp.nobleblocks.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"nobleblocks-mcp": {
"serverUrl": "https://mcp.nobleblocks.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
6 tools
nobleblocks mcp exposes 6 tools to a connected agent.
- search_papers
- Full-text + semantic hybrid search with year/citation/source filters
- get_paper
- Fetch metadata by DOI, PMID, arXiv ID, or OpenAlex ID
- find_similar
- Find papers related by meaning, not just keyword matching
- get_citation_graph
- Citation network β references and citing papers
- search_by_entity
- Find papers linked to a gene, drug, disease, or institution via the KG
- create_literature_review
- AI-generated structured lit review with citations (Pro)
Score
75 / 100
Good
- Documentation25/25
- Maintenance16/25
- Trust16/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 85 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 6 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint β no local install
Version history
| Versions | Published |
|---|---|
| 2.0.0Latest | Jun 5, 2026 |