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 records.
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
record | Full public record by ORCID iD (e.g. "0000-0001-5109-3700"). |
works | Works (publication) summaries with put-codes. |
work | Single work record by put-code. |
employment | Employment summary. |
education | Education summary. |
search | Expanded search (Solr-style query) across the ORCID Registry. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"orcid": {
"url": "https://gateway.pipeworx.io/orcid/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Orcid data" })
The gateway picks the right tool and fills the arguments automatically.
MIT