OpenCitations

live ResearchCitations

OpenCitations COCI — open-license citation index. Keyless.

6 tools
0ms auth
free tier 50 calls/day

Tools

references required: doi

References for a DOI.

Parameters
Name Type Description
doi req string
Try it
citations required: doi

Citations of a DOI.

Parameters
Name Type Description
doi req string
Try it
citation_count required: doi

Incoming-citation count.

Parameters
Name Type Description
doi req string
Try it
references_count required: doi

Outgoing-reference count.

Parameters
Name Type Description
doi req string
Try it
metadata required: dois

Bibliographic metadata for DOIs.

Parameters
Name Type Description
dois req array
Try it
citation required: oci

Citation by OCI.

Parameters
Name Type Description
oci req string
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/opencitations/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/opencitations/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"references","arguments":{"doi": "10.1038/nature12373"}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("references", {"doi":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("opencitations coci — open-license citation index");