
Connects Claude to the ORCID public API for querying researcher profiles and publications. You get six tools: pull a full researcher record by ORCID iD, list their works with put-codes, fetch individual publications, grab employment and education histories, or run Solr-style searches across the entire registry. Part of the Pipeworx gateway, so you can either hit this specific data source or connect to their full catalog of 250+ APIs. Useful when you're building academic research tools, verification workflows, or anything that needs to cross-reference scholarly output with author identities. Runs over streamable HTTP, no local setup required.
ORCID MCP — public researcher records (works, education, employment). Uses the public ORCID REST API (no key required for read access to public data).
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
record(orcid_id) — full public record (works, employments, education, …)works(orcid_id) — publication list with put-codeswork(orcid_id, put_code) — single work recordemployment(orcid_id) — employment summaryeducation(orcid_id) — education summarysearch(query, rows?, start?) — expanded search across ORCID (lucene-style)https://pub.orcid.org/v3.0/ and the expanded search https://pub.orcid.org/v3.0/expanded-search.
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"orcid": {
"url": "https://gateway.pipeworx.io/orcid/mcp"
}
}
}
tools/list at https://gateway.pipeworx.io/orcid/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 Orcid data" })
The gateway picks the right tool and fills the arguments automatically.
MIT