record

Pack: orcid · Endpoint: https://gateway.pipeworx.io/orcid/mcp

Full public record by ORCID iD (e.g. “0000-0001-5109-3700”).

Parameters

NameTypeRequiredDescription
orcid_idstringyes

Example call

Arguments

{
  "orcid_id": "0000-0001-5109-3700"
}

curl

curl -X POST https://gateway.pipeworx.io/orcid/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"record","arguments":{"orcid_id":"0000-0001-5109-3700"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('record', {
  "orcid_id": "0000-0001-5109-3700"
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Full public ORCID record"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "orcid": {
      "url": "https://gateway.pipeworx.io/orcid/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026