research-mcp
A read-only FastMCP server for academic research that lets agents search papers, inspect metadata, follow citation graphs, generate BibTeX, and read full texts of open-access PDFs via semantic scholar, OpenAlex, arXiv, DBLP, and Crossref.
README
Research MCP
Read-only MCP server for academic research. Lets an LLM agent search papers, inspect metadata, follow citation graphs, generate BibTeX, and read full texts of open-access PDFs — all via FastMCP tools.
Requirements
- Python 3.13+
- uv
- Internet access to the public APIs (no API key required)
How it works
| API | Role |
|---|---|
| Semantic Scholar | Primary search, metadata, TLDRs, citation graph. Tried first. |
| OpenAlex | Automatic fallback when Semantic Scholar is rate-limited, plus open-access PDF resolution. |
| arXiv | Dedicated preprint search (source="arxiv"), arXiv-ID lookups, and direct PDF download. Best for finding specific recent papers by exact name. |
| DBLP | Venue proceedings surveys (venue_proceedings) and venue-scoped searches. The canonical source for "what does this conference accept". |
| Crossref | BibTeX generation (transform/application/x-bibtex). |
| PyMuPDF | PDF text extraction. |
Semantic Scholar is rate-limited when used without a key, so every request retries with exponential backoff (honoring Retry-After) before falling back to OpenAlex. Results always tell the agent which source was used. The arXiv API enforces a ~3 s spacing rule, which the server honors; DBLP resets connections on rapid sequential requests, so venue-stream pages are fetched with a 3 s politeness delay too.
Caching
All brittle API responses, search results, venue proceedings corpora, and PDFs are cached on disk under ~/.cache/research-mcp/ (api/ for JSON responses, pdf/ for downloaded PDFs):
- Fresh cache hits are served instantly — repeat queries don't touch the network.
- Venue corpora (assembled from DBLP pages) are cached as a whole, so re-surveys of a conference program are instant even if DBLP drops a page.
- Stale fallback: if an API is down or rate-limiting, the last cached response is served anyway, so the agent still gets an answer.
- Cache TTLs: 7 days for arXiv and BibTeX (stable data), 24 h for search/metadata and DBLP. Override the location with
RESEARCH_MCP_CACHE_DIR.
Configuration
Register the server in your coding agent's MCP configuration. For example, in Opencode's opencode.json:
{
"mcp": {
"research-mcp": {
"command": [
"uvx",
"--from",
"git+https://github.com/404Simon/research-mcp",
"research-mcp"
],
"enabled": true,
"type": "local"
}
}
}
Environment variables (all optional)
| Variable | Purpose |
|---|---|
SEMANTIC_SCHOLAR_API_KEY |
Set for guaranteed 1 RPS and higher reliability (falls back to OpenAlex otherwise). |
RESEARCH_MCP_CACHE_DIR |
Where API responses and PDFs are cached. Default: ~/.cache/research-mcp/. |
Tools
search_papers
Search academic papers by keyword with optional venue and year filters. Returns structured results with title, year, venue, authors, DOI, abstract, citation count, and an open-access PDF link when available.
| Argument | Type | Description |
|---|---|---|
query |
string (req.) |
Search terms |
venue |
string (opt.) |
Filter by venue, e.g. e-Energy, VLDB |
year_start |
int (opt.) |
Earliest publication year |
year_end |
int (opt.) |
Latest publication year |
limit |
int (opt.) |
Max results (default 20) |
source |
string (opt.) |
auto (default), semanticscholar, openalex, or arxiv |
source="arxiv" searches the arXiv preprint API and is the recommended way to find specific recent papers by exact name, e.g. query='ti:"carbon intensity" AND abs:forecast' (arXiv field syntax is passed through verbatim). All results are cached, so repeat searches are instant.
venue_proceedings
Survey a venue's proceedings (what actually gets published there). Use this to check whether a paper idea fits a conference like ACM e-Energy.
| Argument | Type | Description |
|---|---|---|
venue |
string (req.) |
Venue name (e.g. e-Energy) or a DBLP stream key (e.g. conf/eenergy) |
year |
int (opt.) |
Only papers from one year (e.g. 2024) |
query |
string (opt.) |
Topic filter; papers are ranked by title-keyword overlap |
limit |
int (opt.) |
Max results (default 20) |
The full venue corpus is fetched from DBLP (paginated past its 100-hit cap), ranked client-side, and cached as a whole — re-surveys are instant.
{"results": [
{"title": "Reinforcement Learning Approach for Optimal Distributed Energy Management in a Microgrid",
"year": 2018, "venue": "IEEE Transactions on Power Systems",
"authors": ["Elham Foruzan", "Leen-Kiat Soh", "S. Asgarpoor"],
"doi": "10.1109/tpwrs.2018.2823641",
"abstract": "In this paper, a multiagent-based model is used ...",
"citation_count": 297, "open_access_pdf": null,
"source": "openalex"}],
"note": "(Semantic Scholar unavailable — used OpenAlex instead: RequestFailed)",
"count": 1}
paper_details
Full metadata for a paper. Accepts a DOI (e.g. 10.1109/tpwrs.2018.2823641), an arXiv ID (e.g. 2408.03506, arXiv:2408.03506, or an arxiv.org/abs/... URL), or an OpenAlex ID.
| Argument | Type | Description |
|---|---|---|
doi_or_id |
string (req.) |
DOI, arXiv ID, or OpenAlex ID |
Returns title, authors, venue, year, abstract, TLDR, citation count, DOI, and open-access PDF:
get_citation_graph
Follow a paper's citations forward or backward for snowball searching.
| Argument | Type | Description |
|---|---|---|
paper_id |
string (req.) |
DOI, OpenAlex ID (W...), or Semantic Scholar paper ID |
direction |
string (opt.) |
citing (default, papers that cite this one) or referenced (its bibliography) |
limit |
int (opt.) |
Max results (default 20) |
get_bibtex
Generate a BibTeX entry for a DOI. Uses Crossref's native transform; falls back to local generation from OpenAlex metadata (handles arXiv DOIs that Crossref doesn't know).
| Argument | Type | Description |
|---|---|---|
doi |
string (req.) |
DOI |
@article{Foruzan_2018, title={Reinforcement Learning Approach for Optimal Distributed Energy Management in a Microgrid}, volume={33}, ..., author={Foruzan, Elham and Soh, Leen-Kiat and Asgarpoor, Sohrab}, year={2018} }
read_paper_full_text
Download an open-access PDF and extract its text with PyMuPDF. Pass a DOI, an arXiv ID (e.g. 2408.03506), or a direct PDF URL. PDFs are cached locally (~/.cache/research-mcp/pdf/).
| Argument | Type | Description |
|---|---|---|
doi_or_pdf_url |
string (req.) |
DOI, arXiv ID, or https://... PDF URL |
max_chars |
int (opt.) |
Truncate returned text (default 50000) |
cache |
bool (opt.) |
Cache the PDF locally (default true) |
Returns the extracted text, page count, source URL, and cached path. If no open-access copy is found, the agent gets a clear message telling it to search for an OA copy or pass a PDF URL directly.
File structure
src/
main.py # FastMCP server, tool definitions, fallback orchestration
client.py # HTTP client with retry/backoff (429/5xx, Retry-After)
cache.py # Disk cache (~/.cache/research-mcp/) with stale fallback
semanticscholar.py # Semantic Scholar: search, details, citations (optional API key)
openalex.py # OpenAlex: search, details, citation graph, OA-PDF resolution
arxiv.py # arXiv API: search, ID lookups (3 s politeness, 7-day cache)
dblp.py # DBLP: venue proceedings + venue-scoped search (paged corpus cache)
crossref.py # Crossref: BibTeX transform + local fallback generator
pdf.py # PDF download/validation/caching + PyMuPDF text extraction
No API key required. Run uv sync && uv run research-mcp to start the server over stdio.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。