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

NameTypeRequiredDescription
querystringnoFree-text search over tender titles and descriptions, e.g. “cloud services” or “Kenya energy”.
statusstringnoTender status in plain words (default “open”).
limitintegernoResults per page, 1-50 (default 10).
pageintegerno1-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.

Regenerated from source · build August 12, 2026