Skip to main content
Glama
PHoenixs57

literature-search-mcp

by PHoenixs57

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 by pmcid, pmid, or doi, returning title, abstract, structured sections, a joined plain-text full_text, and metadata.

literature_search accepts:

Input

Type

Default

Notes

query

string

required

Search expression. Rich syntax (fielded, wildcard, Boolean) is passed through to providers that support it natively (PubMed [Field], Europe PMC FIELD:, arXiv field:); Crossref, OpenAlex, Semantic Scholar, and bioRxiv receive a sanitized keyword form so wildcards/fields never break them.

limit

integer 1–50

10

Maximum fused results returned.

sources

source ID array

all seven

pubmed, europepmc, biorxiv, crossref, openalex, semantic-scholar, arxiv

year_from

integer

unset

Inclusive lower publication year.

year_to

integer

unset

Inclusive upper publication year.

open_access

boolean

unset

Require positive open-access or PDF evidence.

abstract_max_chars

integer 1–3000

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

pmcid

string

unset

PubMed Central identifier (e.g. PMC1234567); at least one of pmcid/pmid/doi is required.

pmid

string

unset

PubMed identifier; resolved to a PMCID via Europe PMC search.

doi

string

unset

DOI; resolved to a PMCID via Europe PMC search.

max_chars

integer 1000–1000000

100000

Maximum characters in the joined full_text string; sections and abstract are returned in full.

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 start

The 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_KEY

No 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:

  1. PubMed

  2. Europe PMC

  3. bioRxiv/medRxiv

  4. Crossref

  5. OpenAlex

  6. Semantic Scholar

  7. 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-After support;

  • 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.jsonl

History 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:clear

Tests

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:live

It 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.

Available Tools

3 tools
literature_get_fulltextFetch open-access full textA
Read-onlyIdempotent

Fetch open-access full text from Europe PMC (PMC Open Access subset) for a paper identified by at least one of pmcid, pmid, or doi. Returns title, abstract, structured sections, a joined plain-text full_text, and metadata (identifiers, source, url, license, word/character counts, truncated flag). Papers without open-access full text return a structured status of "not_found".

ParametersJSON Schema
NameRequiredDescriptionDefault
doiNoDigital Object Identifier
pmidNoPubMed identifier
pmcidNoPubMed Central identifier, e.g. PMC1234567
max_charsNoMaximum characters in the joined full_text string; sections and abstract are returned in full

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate read-only and non-destructive behavior. The description adds valuable context: the exact return fields (title, abstract, full_text, metadata), the truncated flag, and the not_found status for papers without open access. This goes beyond the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the primary purpose, and includes return details without redundancy. Every sentence earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description sufficiently explains return values and the not_found case. It covers the main behavioral aspects needed for invocation, though it could mention error handling for invalid/missing identifiers.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers all parameters with descriptions (100% coverage), so baseline is 3. The description adds meaning by explaining that at least one of the three IDs is required and by mentioning the truncated flag, which relates to max_chars. This enriches parameter understanding.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the specific action (fetch full text from Europe PMC) and resource (open-access subset), and distinguishes it from sibling tools like literature_search (search) and literature_sources (sources). It clearly identifies the expected identifier inputs.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides clear context for when to use the tool (when you have at least one of pmcid, pmid, or doi) but does not explicitly mention alternatives or when not to use it. The condition is clear enough for an agent to infer usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

literature_sourcesList literature sourcesA
Read-only

List the seven supported literature sources, optional credential environment variables, and provider limitations.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, so the read-only nature is covered. The description adds useful context beyond that: the exact count (seven), inclusion of credential environment variables, and provider limitations. It doesn't describe output structure, but for a simple read-only tool this is sufficient credit.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, compact sentence that clearly enumerates the three items the tool lists. No wasted words or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (no parameters, no output schema, read-only), the description is complete: it tells exactly what will be listed (seven sources, credential env vars, provider limitations). An agent can invoke and interpret the result without further context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so schema coverage is trivially 100%. With no parameters, the description doesn't need to explain parameter meanings; baseline is 4.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific action ('List') and resource ('the seven supported literature sources'), and goes further by mentioning credential environment variables and provider limitations. This distinguishes it from sibling tools that search or fetch fulltext.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage (e.g., to see available sources before searching) but does not explicitly state when to use this versus siblings. It mentions credential env vars and limitations, which hints at configuration setup, but no explicit when-to-use or when-not-to-use guidance is given.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updatesv1.2.1
    • First observedliterature_get_fulltext
    • First observedliterature_search
    • First observedliterature_sources

TDQS

A4.1/5.0
Disambiguation5/5

Each tool serves a clearly distinct purpose: searching across sources, listing sources, and fetching full text. No functional overlap exists between them.

Naming Consistency4/5

Tools generally follow a verb_noun pattern with a shared 'literature_' prefix, but 'literature_sources' is a noun phrase rather than a verb action, creating a minor deviation from the otherwise consistent style.

Tool Count5/5

Three tools is a well-scoped set for a literature search server, covering the essential operations without redundancy or bloat.

Completeness4/5

The set covers searching, source enumeration, and open-access full-text retrieval, but lacks a direct metadata lookup by identifier (e.g., PMID/DOI) when full text is unavailable, which is a minor gap.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Unified 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.
    21
    2
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Comprehensive MCP server for academic research workflows, enabling paper searching across multiple sources, manuscript processing with citation placeholders, search caching, and citation export.
    11
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    A 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.
    4
    MIT
  • A
    license
    A
    quality
    C
    maintenance
    MCP server that turns a medRxiv DOI into clean markdown full text and provides free, relevance-ranked preprint search via Europe PMC.
    2
    1
    Apache 2.0

Latest Blog Posts

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