get_research_product
Pack: openaire · Endpoint: https://gateway.pipeworx.io/openaire/mcp
Fetch a single research product (publication / dataset / software) by OpenAIRE ID — use after search_publications / search_datasets / search_software to get the full record.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | OpenAIRE id (e.g. “doi_dedup___::abc…”) |
Example call
Arguments
{
"id": "doi_dedup___::10.1038/nature12373"
}
curl
curl -X POST https://gateway.pipeworx.io/openaire/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_research_product","arguments":{"id":"doi_dedup___::10.1038/nature12373"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_research_product', {
"id": "doi_dedup___::10.1038/nature12373"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "A single research product (publication, dataset, or software)"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"openaire": {
"url": "https://gateway.pipeworx.io/openaire/mcp"
}
}
}
See Getting Started for client-specific install steps.