community_records
Pack: zenodo · Endpoint: https://gateway.pipeworx.io/zenodo/mcp
Fetch paginated records belonging to a Zenodo community by its slug id (e.g. “openaire”). Returns record metadata, DOIs, and file links for all items in the community.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | |
page | number | no | |
size | number | no |
Example call
Arguments
{
"id": "covid-19",
"page": 1,
"size": 25
}
curl
curl -X POST https://gateway.pipeworx.io/zenodo/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"community_records","arguments":{"id":"covid-19","page":1,"size":25}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('community_records', {
"id": "covid-19",
"page": 1,
"size": 25
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Records in a Zenodo community"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"zenodo": {
"url": "https://gateway.pipeworx.io/zenodo/mcp"
}
}
}
See Getting Started for client-specific install steps.