TED (EU procurement)

live GovernmentProcurementEurope

Tenders Electronic Daily — EU public procurement notices, ~700k/year. Searchable by buyer country, CPV code, value.

2 tools
0ms auth
free tier 50 calls/day

Tools

search_notices

Search EU procurement notices with structured filters.

Parameters
Name Type Description
query opt string Free-text — title / description
country opt string Buyer country (ISO alpha-2)
cpv opt string CPV code (8-digit)
date_from opt string Publication date from (YYYY-MM-DD)
date_to opt string Publication date to
value_min opt number Estimated value floor (EUR)
value_max opt number Estimated value ceiling (EUR)
notice_type opt string cn-standard | can-standard | pin | ...
limit opt number 1-250 (default 25)
page opt number 1-based
Try it
get_notice required: publication_number

Fetch a single TED notice by publication number.

Parameters
Name Type Description
publication_number req string TED publication number, "<num>-<year>"
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/ted-eu/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/ted-eu/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_notices","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_notices", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("tenders electronic daily — eu public procurement notices, ~700k/year");