Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"crossref": {
"env": {
"CROSSREF_MAILTO": "you@example.com"
},
"args": [
"crossref-mcp"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server wrapping the Crossref REST API, exposing scholarly-metadata lookups (works, members, journals, funders, types, licenses, prefixes) as tools
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
uvx 'crossref-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked crossref-mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools / education
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Copy/paste detector for programming source code, supports 223 formats. AI-ready with token-efficient reporter, skill and MCP server.
MCP Security Weekly
Get CVE alerts and security updates for io.github.jtl-neo/crossref-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
English | 中文
An MCP server wrapping the Crossref REST API, exposing scholarly-metadata lookups (works, members, journals, funders, types, licenses, prefixes) as tools an LLM client can call.
Not affiliated with or endorsed by Crossref. Data is served live from the public Crossref API. Set
CROSSREF_MAILTOto join Crossref's polite pool.
mailto), optional Crossref Plus token.X-Rate-Limit-* headers) with
exponential backoff honoring Retry-After.select, raw vs simplified output.X-API-Key HTTP auth (/health exempt), /health endpoint.uv sync
export CROSSREF_MAILTO="you@example.com" # recommended (polite pool)
uv run crossref-mcp # starts a stdio MCP server
Inspect with the MCP Inspector: uv run mcp dev src/crossref_mcp/server.py.
| Env var | Required | Default | Description |
|---|---|---|---|
CROSSREF_MAILTO | recommended | — | Email for Crossref's polite pool. |
CROSSREF_PLUS_TOKEN | no | — | Crossref Plus API token (sent as a header). |
CROSSREF_BASE_URL | no | https://api.crossref.org | API base URL. |
CROSSREF_TIMEOUT | no | 30 | Per-request timeout (seconds). |
MCP_TRANSPORT | no | stdio | stdio or http. |
MCP_API_KEY | no | — | If set, HTTP requests need a matching X-API-Key header (/health exempt). |
LOG_LEVEL | no | INFO | Log level (logs go to stderr). |
REDIS_URL | no | — | Enable Redis cache + shared rate limiting (optional). |
CACHE_TTL | no | 86400 | Cache TTL in seconds. |
RATELIMIT_BACKEND | no | in-memory | in-memory or redis. |
Works — search_works, get_work (by DOI), get_work_references (capped
at 50), get_work_quality (registration agency).
Members / Journals / Funders — search_members · get_member ·
get_member_works; search_journals · get_journal (ISSN) ·
get_journal_works; search_funders · get_funder · get_funder_works.
Types / Licenses / Prefixes — list_types · get_type; list_licenses;
get_prefix. Plus ping.
Shared parameters. Search/list tools take query (and
query_bibliographic / query_author / query_title on works), filter
(Crossref key:value,… syntax), sort + order, rows (≤1000) + offset,
and select. Deep paging: set cursor="*" then reuse the returned
next_cursor. All tools return simplified fields by default; pass raw=true
for the full Crossref JSON.
stdio (Claude Desktop / Cursor) — claude_desktop_config.json:
{
"mcpServers": {
"crossref": {
"command": "uvx",
"args": ["crossref-mcp"],
"env": { "CROSSREF_MAILTO": "you@example.com" }
}
}
}
Or run the container over stdio: "command": "docker", "args": ["run", "-i", "--rm", "-e", "CROSSREF_MAILTO", "heyinnaneo/crossref-mcp"].
Streamable HTTP — once the container is up, point an HTTP-capable client at `http://localhost:8000/mc