references
Pack: europepmc · Endpoint: https://gateway.pipeworx.io/europepmc/mcp
List of references cited by one article.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
source | string | yes | |
id | string | yes | |
pageSize | number | no | 1-1000 (default 25) |
Example call
curl -X POST https://gateway.pipeworx.io/europepmc/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"references","arguments":{}}}'
Response shape
Full JSON Schema
{
"oneOf": [
{
"type": "object",
"properties": {
"found": {
"type": "boolean",
"enum": [
false
],
"description": "Article not found"
},
"coverage": {
"type": "string",
"description": "Coverage database name"
},
"hint": {
"type": "string",
"description": "Fallback suggestion message"
}
},
"required": [
"found"
]
},
{
"type": "object",
"properties": {
"pageSize": {
"type": "number",
"description": "References per page"
},
"hitCount": {
"type": "number",
"description": "Total references count"
},
"currentPage": {
"type": "number",
"description": "Current page"
},
"referenceList": {
"type": "object",
"properties": {
"reference": {
"type": "array",
"description": "List of cited references",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Reference ID"
},
"title": {
"type": "string",
"description": "Reference title"
},
"authorString": {
"type": "string",
"description": "Authors"
},
"citationType": {
"type": "string",
"description": "Type of citation"
}
}
}
}
}
}
}
}
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"europepmc": {
"url": "https://gateway.pipeworx.io/europepmc/mcp"
}
}
}
See Getting Started for client-specific install steps.