
Wraps the Crossref REST API for searching and retrieving academic paper metadata without requiring authentication. Good for building research assistants, citation tools, or anything that needs to pull publication data, DOIs, author info, or journal details on the fly. Part of the Pipeworx gateway, so you can either use it standalone or tap into their broader collection of 250+ data sources. Includes an ask_pipeworx helper that lets you query in natural language instead of calling specific tools directly. Free tier available, runs over streamable HTTP, and you just drop the gateway URL into your MCP client config.
Crossref is the largest DOI (Digital Object Identifier) registration agency. Every DOI you've seen in an academic citation goes through them. Their API exposes structured metadata for ~150M+ scholarly works: titles, authors, ORCIDs, abstracts where available, references, citation graphs. Free, no auth required.
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
Where Semantic Scholar is search-focused, Crossref is the authoritative source for DOI metadata. If you have a DOI and need its canonical metadata, Crossref is the answer. Citation networks are also more complete here than in many discipline-specific databases.
Common flows:
crossref_get_work({doi: "10.48550/arXiv.1706.03762"}) → title, authors, journal, year, citations.For free-text academic search, prefer Semantic Scholar — Crossref's search is more limited.
Citable URI: pipeworx://crossref/work/{doi}.
Public, free. Crossref has a "polite pool" giving priority to clients that identify themselves via User-Agent. Pipeworx forwards pipeworx-mcp/1.0 (https://pipeworx.io) so we get polite-pool treatment by default.
| Field | Notes |
|---|---|
| Title | Authoritative |
| Authors with ORCID | When the publisher recorded ORCIDs |
| Journal / publisher / year | Stable identifiers |
| References (the cited works) | Coverage varies by publisher |
| References by (citers) | Available via separate "is-referenced-by-count" |
| Open-access link | When publisher provides it |
| Funder data | NSF, NIH, etc. when reported |
relation field for is-retracted-by before citing.10.1234/xyz, https://doi.org/10.1234/xyz, doi:10.1234/xyz. Crossref accepts the bare form. Strip prefixes before passing to the API.type field tells you which (journal-article, book-chapter, proceedings-article, etc.). For systematic literature reviews, type filtering matters.relation field.Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"crossref": {
"url": "https://gateway.pipeworx.io/crossref/mcp"
}
}
}
tools/list at https://gateway.pipeworx.io/crossref/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Crossref data" })
The gateway picks the right tool and fills the arguments automatically.
MIT