Search and retrieve scholarly metadata from the Crossref REST API
MCPpedia last refreshed this data
io.github.SMABoundless/crossref is an MCP server that search and retrieve scholarly metadata from the Crossref REST API. Its tool list has not been published yet over stdio, requires no API key, and scores 70/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"crossref": {
"env": {
"CROSSREF_MAILTO": "your.email@example.com"
},
"args": [
"/path/to/crossref-mcp-server/server.py"
],
"command": "/path/to/crossref-mcp-server/venv/bin/python"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP (Model Context Protocol) server for searching and retrieving scholarly metadata from the CrossRef REST API — 150M+ records across all publishers and disciplines.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
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
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for io.github.SMABoundless/crossref and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model Context Protocol) server for searching and retrieving scholarly metadata from the CrossRef REST API — 150M+ records across all publishers and disciplines.
Built with FastMCP. No API key required.
| Tool | Description |
|---|---|
crossref_search | Search works by keyword with filtering by year, type, and sort options |
crossref_title_search | Search specifically by title for more precise matching |
crossref_author_search | Search for works by a specific author, optionally combined with keywords |
crossref_doi_lookup | Retrieve full metadata for a work by DOI |
crossref_journal_search | Search for journals by name |
crossref_journal_works | Get works published in a specific journal by ISSN |
crossref_funder_search | Search for funding organizations |
crossref_references | Get the reference list cited by a specific work |
crossref_export_ris | Export recent results as RIS (for Zotero, EndNote, etc.) |
crossref_export_bibtex | Export recent results as BibTeX |
cd crossref-mcp-server
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
CrossRef doesn't require an API key, but setting a mailto address gives you access to their faster "polite" API pool:
cp .env.example .env
# Edit .env with your email address
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"crossref": {
"command": "/path/to/crossref-mcp-server/venv/bin/python",
"args": ["/path/to/crossref-mcp-server/server.py"],
"env": {
"CROSSREF_MAILTO": "your.email@example.com"
}
}
}
}
Or if using Claude Code CLI:
claude mcp add crossref \
/path/to/crossref-mcp-server/venv/bin/python \
/path/to/crossref-mcp-server/server.py \
-e CROSSREF_MAILTO=your.email@example.com
Once connected, you can ask Claude things like:
MIT