work

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

Single work record by put-code.

Parameters

NameTypeRequiredDescription
orcid_idstringyes
put_codestringyes

Example call

Arguments

{
  "orcid_id": "0000-0001-5109-3700",
  "put_code": "12345678"
}

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":"work","arguments":{"orcid_id":"0000-0001-5109-3700","put_code":"12345678"}}}'

TypeScript (@pipeworx/sdk)

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

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

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Single work 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