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

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_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.

Regenerated from source · build July 30, 2026