eu_external_action_tenders
Pack: eu-funding-tenders · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/eu_external_action_tenders for the schema, then POST the same URL with its arguments for the data.
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 — every tool in the catalog, including this one — or use one-click install buttons:
{
"mcpServers": {
"pipeworx": {
"url": "https://pipeworx.io/mcp"
}
}
}
Connect to just the eu-funding-tenders pack
{
"mcpServers": {
"eu-funding-tenders": {
"url": "https://gateway.pipeworx.io/eu-funding-tenders/mcp"
}
}
}
See Getting Started for client-specific install steps.