TED (EU procurement)

liveGovernmentEurope

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

6tools
0msauth
free tier50 calls/day

Tools

search_notices

EU public procurement notices from Tenders Electronic Daily, the EU's official journal.

No parameters required.

Try it
get_notice

One EU public procurement notice in full, by id, from Tenders Electronic Daily.

No parameters required.

Try it
ted_search_awards

EU public procurement contract awards matching a filter, from Tenders Electronic Daily.

No parameters required.

Try it
ted_supplier_history

Every EU public contract a named supplier has won, from Tenders Electronic Daily.

No parameters required.

Try it
ted_buyer_profile

What a named EU public buyer has awarded, from Tenders Electronic Daily.

No parameters required.

Try it
cpv_lookup

The EU Common Procurement Vocabulary code(s) matching a keyword.

No parameters required.

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");