EU Funding & Tenders

live Government

Horizon Europe and other EU funding calls plus EU tenders — what is open, the deadline, and the topic identifier to quote in an application.

4 tools
0ms auth
free tier 50 calls/day

Tools

eu_search_calls

Search Horizon Europe and every other EU funding call (grant topics) on the EU Funding & Tenders Portal by keyword. Returns the topic identifier to quote in an application (e.g. HORIZON-CL5-2026-09-D4

No parameters required.

Try it
eu_open_calls

Currently open EU funding calls ordered by nearest submission deadline first, with days remaining computed at request time. Answers "what EU grants can I still apply for", "which Horizon Europe calls

No parameters required.

Try it
eu_get_topic

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 condit

No parameters required.

Try it
eu_search_tenders

Search EU tenders and procurement opportunities published on the EU Funding & Tenders Portal (European Commission external-action contracts and EuropeAid calls). Returns the reference, title, contract

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/eu-funding-tenders/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/eu-funding-tenders/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"eu_search_calls","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("eu_search_calls", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("horizon europe and other eu funding calls plus eu tenders — what is open, the deadline, and the topic identifier to quote in an application");