eu_search_tenders
Pack: eu-funding-tenders · Endpoint: https://gateway.pipeworx.io/eu-funding-tenders/mcp
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 budget and currency, submission deadline, status word, geographical zone and portal URL. Answers “what EU contracts are open in Nigeria”, “which EU tenders cover water infrastructure”, “EU procurement opportunities for technical assistance services”.
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_search_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_search_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.