eu_external_action_tenders
Pack: eu-funding-tenders · Endpoint: https://gateway.pipeworx.io/eu-funding-tenders/mcp
Search EuropeAid external-action contracts — the European Commission’s own development cooperation, humanitarian aid and technical assistance tenders, published on the EU Funding & Tenders Portal with EuropeAid/… references. Covers roughly 2,400 records, all Commission-funded work delivered in partner countries. Returns the reference, title, contract budget and currency, submission deadline, status word, geographical zone and portal URL. Answers “what EuropeAid contracts are open in Nigeria”, “which EU development contracts cover water infrastructure”, “EU technical assistance tenders in the Sahel”. For a contract notice published by a national or municipal buyer inside the EU, that is TED (Tenders Electronic Daily), a separate and far larger journal.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Free-text search over tender titles and descriptions, e.g. “cloud services” or “Kenya energy”. |
status | string | no | Tender status in plain words (default “open”). |
limit | integer | no | Results per page, 1-50 (default 10). |
page | integer | no | 1-based page number (default 1). |
Example call
Arguments
{
"query": "water",
"status": "any",
"limit": 10
}
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_external_action_tenders","arguments":{"query":"water","status":"any","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('eu_external_action_tenders', {
"query": "water",
"status": "any",
"limit": 10
});
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.