Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Orcid

FreeNot checked

Search ORCID researcher profiles, retrieve works, and export citations

GitHubEmbed

About

Search ORCID researcher profiles, retrieve works, and export citations

README

An MCP (Model Context Protocol) server that provides tools for searching the ORCID registry, reading researcher profiles, retrieving publications, and exporting citations in RIS and BibTeX formats.

Built with FastMCP and the ORCID Public API v3.0.

Tools

Tool Description
orcid_search Search for researchers by name, affiliation, keyword, DOI, or advanced Solr query
orcid_read_record Read a researcher's full profile (bio, employment, education, keywords)
orcid_read_works Get publications from a researcher's ORCID record
orcid_export_ris Export retrieved works as RIS (for Zotero, EndNote, etc.)
orcid_export_bibtex Export retrieved works as BibTeX

Setup

1. Get ORCID API credentials

Register for free public API credentials at ORCID Developer Tools.

2. Install

cd orcid-mcp-server
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt

3. Configure environment

Copy the example env file and add your credentials:

cp .env.example .env
# Edit .env with your ORCID_CLIENT_ID and ORCID_CLIENT_SECRET

4. Add to Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "orcid-mcp": {
      "command": "/path/to/orcid-mcp-server/venv/bin/python",
      "args": ["/path/to/orcid-mcp-server/server.py"],
      "env": {
        "ORCID_CLIENT_ID": "your-client-id",
        "ORCID_CLIENT_SECRET": "your-client-secret"
      }
    }
  }
}

Or if using Claude Code CLI:

claude mcp add orcid-mcp \
  /path/to/orcid-mcp-server/venv/bin/python \
  /path/to/orcid-mcp-server/server.py \
  -e ORCID_CLIENT_ID=your-client-id \
  -e ORCID_CLIENT_SECRET=your-client-secret

Usage examples

Once connected, you can ask Claude things like:

  • "Search ORCID for researchers at Northwestern University working on machine learning"
  • "Look up the ORCID profile for 0000-0002-1825-0097"
  • "Get the publications for this researcher and export them as RIS for Zotero"

License

MIT

from github.com/SMABoundless/orcid-mcp-server

Install Orcid in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install orcid

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add orcid -- uvx orcid-mcp-server

FAQ

Is Orcid MCP free?

Yes, Orcid MCP is free — one-click install via Unyly at no cost.

Does Orcid need an API key?

No, Orcid runs without API keys or environment variables.

Is Orcid hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Orcid in Claude Desktop, Claude Code or Cursor?

Open Orcid on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Orcid with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs