eu_get_topic
Pack: eu-funding-tenders · Endpoint: https://gateway.pipeworx.io/eu-funding-tenders/mcp
Full detail for one EU funding call topic by its identifier, e.g. “HORIZON-CL5-2026-09-D4-03”. Returns the tag-stripped expected-outcome and scope description, the admissibility and eligibility conditions, indicative budget with expected number of grants and EU contribution per project, types of action and grant-agreement types, deadline and deadline model, framework programme, destination, cross-cutting priorities, keywords and the submission links. Answers “what does this Horizon Europe topic fund”, “how much budget does topic X have”, “what are the conditions and page limits for topic X”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
identifier | string | yes | Topic identifier exactly as the portal prints it, e.g. “HORIZON-CL5-2026-09-D4-03”. |
include_conditions | boolean | no | Include the (long) admissibility/eligibility conditions text (default true). |
Example call
Arguments
{
"identifier": "HORIZON-CL5-2026-10-D6-07",
"include_conditions": false
}
curl
curl -X POST https://gateway.pipeworx.io/eu-funding-tenders/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"eu_get_topic","arguments":{"identifier":"HORIZON-CL5-2026-10-D6-07","include_conditions":false}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('eu_get_topic', {
"identifier": "HORIZON-CL5-2026-10-D6-07",
"include_conditions": false
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"eu-funding-tenders": {
"url": "https://gateway.pipeworx.io/eu-funding-tenders/mcp"
}
}
}
See Getting Started for client-specific install steps.