TED (EU procurement)
liveGovernmentEuropeTenders Electronic Daily — EU public procurement notices, ~700k/year. Searchable by buyer country, CPV code, value.
Tools
search_noticesEU public procurement notices from Tenders Electronic Daily, the EU's official journal.
No parameters required.
Try it
get_noticeOne EU public procurement notice in full, by id, from Tenders Electronic Daily.
No parameters required.
Try it
ted_search_awardsEU public procurement contract awards matching a filter, from Tenders Electronic Daily.
No parameters required.
Try it
ted_supplier_historyEvery EU public contract a named supplier has won, from Tenders Electronic Daily.
No parameters required.
Try it
ted_buyer_profileWhat a named EU public buyer has awarded, from Tenders Electronic Daily.
No parameters required.
Try it
cpv_lookupThe 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.
curl -X POST https://gateway.pipeworx.io/ted-eu/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'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.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_notices", {});// Or ask in plain English:
const answer = await px.ask("tenders electronic daily — eu public procurement notices, ~700k/year");