get_paper_citations

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

List papers that CITE a given paper (the works citing it), with their titles, authors, year, and citation counts. Useful for forward citation tracing and finding follow-up work. Keyless.

Parameters

NameTypeRequiredDescription
paper_idstringyesPaper identifier. A Semantic Scholar ID, or prefixed: “DOI:10…”, “arXiv:2106.15928”, “CorpusId:…”.
limitnumbernoMax citing papers to return (default 10, max 25).

Example call

Arguments

{
  "paper_id": "CorpusId:215416146",
  "limit": 15
}

curl

curl -X POST https://gateway.pipeworx.io/semanticscholar/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_paper_citations","arguments":{"paper_id":"CorpusId:215416146","limit":15}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_paper_citations', {
  "paper_id": "CorpusId:215416146",
  "limit": 15
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build August 1, 2026