references

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

“What does paper [DOI] cite” / “references in [paper]” / “what sources does this paper use” — DOIs cited BY the given DOI (the paper’s reference list / bibliography). Use for citation-graph traversal, literature review, source tracking.

Parameters

NameTypeRequiredDescription
doistringyes

Example call

Arguments

{
  "doi": "10.1371/journal.pone.0123456"
}

curl

curl -X POST https://gateway.pipeworx.io/opencitations/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"references","arguments":{"doi":"10.1371/journal.pone.0123456"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('references', {
  "doi": "10.1371/journal.pone.0123456"
});

More examples

{
  "doi": "10.1038/nature12345"
}

Response shape

FieldTypeDescription
referencesarrayDOIs cited by the given DOI
Full JSON Schema
{
  "type": "object",
  "properties": {
    "references": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "DOIs cited by the given DOI"
    }
  }
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026