citation_count

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

“How many times has paper [DOI] been cited” / “citation count for [paper]” / “is [study] highly cited” — incoming citation count for a DOI. Fast version of citations when you only need the number, not the citing DOIs.

Parameters

NameTypeRequiredDescription
doistringyes

Example call

Arguments

{
  "doi": "10.1038/nature12345"
}

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":"citation_count","arguments":{"doi":"10.1038/nature12345"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('citation_count', {
  "doi": "10.1038/nature12345"
});

Response shape

FieldTypeDescription
countintegerIncoming citation count for the DOI
Full JSON Schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "Incoming citation count for the 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