crossref-mcp-server
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., "@crossref-mcp-serverresolve DOI 10.1038/nature12373"
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.
Tools
Seven tools for working with Crossref data — DOI resolution, full-text search across all scholarly works, outgoing reference lists, and journal, funder, and publisher lookup:
Tool | Description |
| Resolve a DOI to its full Crossref metadata record: title, authors, affiliations, abstract (when deposited), journal, publication date, type, license, full-text links, funder acknowledgements, and outgoing reference list |
| Search the Crossref works index by free text and/or structured filters. Supports sort, field selection, and cursor-based deep paging. |
| Return the outgoing reference list for a DOI — the works cited by this paper, with raw citation strings and resolved DOIs where available |
| Find Crossref journal records by ISSN or title query; optionally retrieve the journal's most recent works by publication date |
| Find funders registered in the Crossref Funder Registry by name or funder DOI; optionally retrieve funded works |
| Resolve a Crossref member ID to its publisher record — name, owned DOI prefixes, DOI counts, per-work-type breakdown, and per-category metadata deposit coverage |
| Resolve a DOI prefix (e.g. |
crossref_get_work
Resolve a DOI to its canonical Crossref record.
DOI validated against
10.NNNN/suffixregex before the upstream callReturns title, authors with affiliations, abstract (when deposited), container/journal, publication date, work type, ISSN, license URLs, full-text link URLs, and funder acknowledgements
Incoming citation count (
is-referenced-by-count) is included; citing works are not — Crossref does not expose that data. Use OpenAlex for citation graphs.
crossref_search_works
Search across ~155M Crossref-registered works.
Free-text
queryplus a structuredfilterobject using Crossref's hyphen-separated key syntax:from-pub-date,until-pub-date,type,funder,issn,member,has-abstract,has-references,has-full-text,directory(useDOAJto restrict to open-access content)Field-specific query parameters scope matching beyond the generic
query:queryTitle,queryAuthor,queryContainerTitle(journal/book name), andqueryBibliographic(whole-citation match to resolve a known reference to its DOI) — all combine with each other and withquerySort by
relevance,is-referenced-by-count,published,deposited, orscorefieldsparameter narrows response payload — useful for large result setsOffset paging up to ~10K results; deep paging requires
cursor=*on the first call, then pass the returnednextCursortoken. Cursor and offset cannot be combined.
crossref_get_references
Fetch the outgoing reference list for a DOI.
Each reference includes its raw citation string and, where Crossref has resolved it, a DOI for follow-up lookup
Coverage varies by publisher — pre-2000 literature and non-participating publishers may have no reference list
Single-hop only; agents that need N-hop traversal chain calls explicitly
crossref_search_journals
Find journal records by ISSN or title.
include_works: truetriggers a second upstream call to fetch the journal's most recent works by publication dateReturns journal title, publisher, ISSN-L, subject areas, and total DOI count
crossref_search_funders
Find funders in the Crossref Funder Registry.
Accepts a name query or a direct funder DOI
include_works: trueretrieves funded works for the matched funderReturns funder name, DOI, country, and alternate names
crossref_get_member
Resolve a Crossref member ID to its publisher/organization record.
Members are the organizations that register DOIs — this answers "what does this publisher publish, and how completely do they deposit metadata?"
Returns primary name, alternate imprint names, owned DOI prefixes, DOI counts (total/current/backfile), a per-work-type breakdown, and per-category metadata deposit coverage (references, abstracts, ORCIDs, funders, licenses, and more) as current/backfile fractions
Pair with
crossref_get_prefixto resolve a DOI prefix to the member ID first
crossref_get_prefix
Resolve a DOI prefix to its owning publisher.
Accepts the registrant prefix of a DOI (e.g.
10.1038, no/suffix)Returns the publisher name and numeric member ID — the ID chains directly into
crossref_get_memberfor the full recordThe Crossref prefix record is thin by design (owner name and member link only); richer publisher data lives on the member record
Related MCP server: @cyanheads/openalex-mcp-server
Features
Built on @cyanheads/mcp-ts-core:
Declarative tool definitions — single file per tool, framework handles registration and validation
Unified error handling across all tools
Pluggable auth (
none,jwt,oauth)Swappable storage backends:
in-memory,filesystem,Supabase,Cloudflare KV/R2/D1Structured logging with optional OpenTelemetry tracing
STDIO and Streamable HTTP transports
Crossref-specific:
Polite-pool
User-Agentheader injected on every request — priority access granted viaCROSSREF_MAILTOemail address, no API token requiredwithRetry: 3 attempts, exponential backoff, handles both 429 and 503 responsesCursor-based deep paging for result sets beyond the ~10K offset cap
Filter key validation: Crossref uses hyphens (
has-abstract,has-references,from-pub-date); the server enforces correct syntax and surfaces API validation errors with actionable recovery hints
Getting started
Add the following to your MCP client configuration file. CROSSREF_MAILTO is optional but recommended — without it the server uses Crossref's anonymous pool with stricter rate limits.
{
"mcpServers": {
"crossref-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/crossref-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info",
"CROSSREF_MAILTO": "your-email@example.com"
}
}
}
}Or with npx (no Bun required):
{
"mcpServers": {
"crossref-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/crossref-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info",
"CROSSREF_MAILTO": "your-email@example.com"
}
}
}
}Or with Docker:
{
"mcpServers": {
"crossref-mcp-server": {
"type": "stdio",
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "MCP_TRANSPORT_TYPE=stdio",
"-e", "CROSSREF_MAILTO=your-email@example.com",
"ghcr.io/cyanheads/crossref-mcp-server:latest"
]
}
}
}For Streamable HTTP, set the transport and start the server:
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 CROSSREF_MAILTO=your-email@example.com bun run start:http
# Server listens at http://localhost:3010/mcpPrerequisites
Bun v1.3.14 or higher (or Node.js v24+).
An email address for
CROSSREF_MAILTOis optional but recommended — Crossref's polite pool grants priority access to clients that identify themselves. No account or token is required.
Installation
Clone the repository:
git clone https://github.com/cyanheads/crossref-mcp-server.gitNavigate into the directory:
cd crossref-mcp-serverInstall dependencies:
bun installConfigure environment:
cp .env.example .env
# edit .env and optionally set CROSSREF_MAILTO for polite-pool accessConfiguration
All configuration is validated at startup via Zod schemas in src/config/server-config.ts.
Variable | Description | Default |
| Email address embedded in the polite-pool | — |
| Crossref API base URL. Override for testing against a local proxy. |
|
| Per-request timeout in milliseconds. |
|
| Transport: |
|
| Port for the HTTP server. |
|
| Auth mode: |
|
| Log level (RFC 5424). |
|
| Directory for log files (Node.js only). |
|
| Enable OpenTelemetry instrumentation. |
|
See .env.example for the full list of optional overrides.
Running the server
Local development
Build and run:
# One-time build bun run rebuild # Run the built server bun run start:stdio # or bun run start:httpRun checks and tests:
bun run devcheck # Lint, format, typecheck, security bun run test # Vitest test suite bun run lint:mcp # Validate MCP definitions against spec
Project structure
Directory | Purpose |
|
|
| Server-specific environment variable parsing and validation with Zod. |
| Tool definitions ( |
| CrossrefService — HTTP client, polite-pool header, retry, pagination helpers. |
| Unit and integration tests mirroring |
Development guide
See CLAUDE.md for development guidelines and architectural rules. The short version:
Handlers throw, framework catches — no
try/catchin tool logicUse
ctx.logfor request-scoped logging,ctx.statefor tenant-scoped storageRegister new tools via the barrel in
src/mcp-server/tools/definitions/index.tsWrap external API calls: validate raw → normalize to domain type → return output schema; never fabricate missing fields (abstracts, reference lists, and affiliations are frequently absent in Crossref records)
Contributing
Issues and pull requests are welcome. Run checks and tests before submitting:
bun run devcheck
bun run testLicense
Apache-2.0 — see LICENSE for details.
This server cannot be installed
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
- Flicense-qualityDmaintenanceEnables AI assistants to search academic literature and retrieve detailed metadata for papers, journals, and funding organizations via the Crossref database. It supports DOI-based lookups and keyword searches to facilitate programmatic access to scholarly research data.Last updated7
- Alicense-qualityAmaintenanceAccess the OpenAlex academic research catalog - 270M+ publications through MCP. Supports STDIO and Streamable HTTP.Last updated1,08910Apache 2.0
- Alicense-qualityCmaintenanceEnables retrieval of academic literature metadata via DOI or search using the Crossref REST API.Last updatedMIT
- Alicense-qualityAmaintenanceSearch artists, releases, recordings, works, and labels; traverse relationships; resolve ISRC/ISWC/barcode; fetch cover art via MCP. STDIO or Streamable HTTP.Last updated861Apache 2.0
Related MCP Connectors
Query FDA data on drugs, food, devices, and recalls via openFDA. STDIO or Streamable HTTP.
bioRxiv + medRxiv preprint server API
Query SEC EDGAR filings, XBRL financials, and company data through MCP. STDIO & Streamable HTTP.
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/cyanheads/crossref-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server