literature-search-mcp
Search arXiv preprints, supporting fielded queries and returning metadata such as title, authors, and links.
Search PubMed scholarly literature, supporting fielded queries and returning publication metadata.
Search Semantic Scholar for academic papers, returning metadata and summaries.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@literature-search-mcpSearch for open-access papers on climate change adaptation"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
literature-search-mcp
A standalone Node.js 22 TypeScript MCP server that searches seven scholarly metadata providers over stdio, normalizes records, deduplicates them, and applies deterministic reciprocal-rank fusion.
For ZIP packaging, recipient installation, Claude Code registration, permissions, updates, troubleshooting, and uninstallation, see the Chinese guide: INSTALL_ZH.md.
MCP tools
The server registers exactly three tools:
literature_search— search selected providers or all providers by default.literature_sources— list supported providers, limitations, and whether optional environment variables are configured.literature_get_fulltext— fetch open-access full text from Europe PMC (PMC Open Access subset) for a paper identified bypmcid,pmid, ordoi, returning title, abstract, structured sections, a joined plain-textfull_text, and metadata.
literature_search accepts:
Input | Type | Default | Notes |
| string | required | Search expression. Rich syntax (fielded, wildcard, Boolean) is passed through to providers that support it natively (PubMed |
| integer 1–50 |
| Maximum fused results returned. |
| source ID array | all seven |
|
| integer | unset | Inclusive lower publication year. |
| integer | unset | Inclusive upper publication year. |
| boolean | unset | Require positive open-access or PDF evidence. |
| integer 1–3000 |
| Maximum characters returned for each provider-supplied abstract or summary. |
Results include title, cleaned provider-supplied abstracts or summaries capped at abstract_max_chars, normalized identifiers, canonical/PDF URLs, year, authors and venue when available, reciprocal-rank score, source evidence, and per-source statuses. literature_search never downloads full text, fetches citation graphs, or retrieves references/citations. Open-access full text is available through the separate literature_get_fulltext tool (Europe PMC OA subset only; input pmcid/pmid/doi; output title, abstract, structured sections, and a joined plain-text full_text capped by max_chars).
literature_get_fulltext accepts:
Input | Type | Default | Notes |
| string | unset | PubMed Central identifier (e.g. |
| string | unset | PubMed identifier; resolved to a PMCID via Europe PMC search. |
| string | unset | DOI; resolved to a PMCID via Europe PMC search. |
| integer 1000–1000000 |
| Maximum characters in the joined |
Papers without open-access full text in Europe PMC return a structured status: "not_found" with empty content; transport or server failures return status: "error" with a sanitized error detail. Full text is never persisted to search history.
Related MCP server: scholar-toolkit-mcp
Requirements and commands
Node.js 22 or newer is required. Dependencies are pinned in package-lock.json.
npm run typecheck
npm test
npm run build
npm startThe build emits dist/server.js and dist/cli.js. npm start runs the stdio server; stdout is reserved for MCP protocol messages and operational logging goes to stderr.
An MCP client can launch the built server with a command equivalent to:
{
"command": "node",
"args": ["/absolute/path/to/literature-search-mcp/dist/server.js"]
}This project does not modify or register MCP client configuration itself.
Optional provider configuration
The server starts and searches without credentials. Optional environment variables improve provider etiquette or rate limits:
OPENALEX_MAILTO
OPENALEX_API_KEY
SEMANTIC_SCHOLAR_API_KEY
CROSSREF_MAILTO
NCBI_TOOL
NCBI_EMAIL
NCBI_API_KEYNo Synthetic Sciences contact address is used as a fallback. PubMed always sends a tool name (literature-search-mcp unless NCBI_TOOL is set); email parameters are sent only when explicitly configured.
See PROVIDERS.md for API-specific behavior and limitations.
Ranking and deduplication
Providers are always processed in this fixed order:
PubMed
Europe PMC
bioRxiv/medRxiv
Crossref
OpenAlex
Semantic Scholar
arXiv
Deduplication checks normalized DOI, PMID, versionless arXiv ID, then normalized title. Records with conflicting values for the same strong identifier type are never merged. Ranking uses reciprocal-rank fusion with a fixed constant (k = 60), followed by stable source/rank/title tie-breakers; provider-native scores do not affect ordering.
HTTP behavior
All provider traffic uses Node's native fetch with:
30-second per-attempt timeout;
three retries after the initial attempt for HTTP 408, 429, 5xx, network failures, and internal timeouts;
numeric and HTTP-date
Retry-Aftersupport;exponential backoff;
caller cancellation propagation;
per-host request pacing and concurrency controls;
a maximum five-minute, 256-entry in-memory GET cache;
typed, sanitized errors that omit query strings and response bodies.
Search history
Each completed search appends one JSON object to:
${XDG_STATE_HOME:-~/.local/state}/literature-search-mcp/history.jsonlHistory records query parameters, source statuses, result identifiers, ranks, evidence, and URLs. It does not store abstracts, authors, provider credentials, or secrets.
Clear history with the compiled CLI:
node dist/cli.js clear-history
# or
npm run history:clearTests
npm test is offline and uses node:test, fixtures, fake fetch implementations, and an in-memory MCP transport. It covers HTTP behavior, every provider parser, aggregation/deduplication, history, the search service, and exact MCP tool registration.
The live smoke test is opt-in:
npm run test:liveIt performs a small Crossref query and is not part of the offline suite.
License and attribution
Apache License 2.0. See LICENSE and NOTICE. This project adapts concepts from OpenScience literature connectors but does not import the OpenScience runtime.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceUnified academic search MCP server that searches open literature (arXiv, bioRxiv, medRxiv, PMC), CNKI, and Web of Science, with browser-backed authentication, local paper library, and export to multiple formats.2212MIT
- AlicenseAqualityAmaintenanceComprehensive MCP server for academic research workflows, enabling paper searching across multiple sources, manuscript processing with citation placeholders, search caching, and citation export.11MIT
- Alicense-qualityDmaintenanceA MCP server for academic literature retrieval, aggregating multiple data sources like arXiv, Crossref, OpenAlex, PubMed, and Semantic Scholar to provide search, details, citations, trends, and recommendations.4MIT
- AlicenseAqualityCmaintenanceMCP server that turns a medRxiv DOI into clean markdown full text and provides free, relevance-ranked preprint search via Europe PMC.21Apache 2.0
Related MCP Connectors
Auditable MCP server for PubMed, Europe PMC, ClinicalTrials.gov, and bioRxiv/medRxiv queries
MCP server for Altmetric APIs - track research attention across news, policy, social media, and more
PubMed MCP — wraps the NCBI E-utilities API (biomedical literature, free, no auth)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/PHoenixs57/literature-search-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server