ted_buyer_profile

Pack: ted-eu · Endpoint: https://gateway.pipeworx.io/ted-eu/mcp

Spending profile of one EU public buyer — what a named contracting authority has AWARDED, from TED (Tenders Electronic Daily, the official journal of the EU). Returns the buyer’s awards newest first (winner, value, currency, category, date) plus a summary: award counts, awarded value by currency, top winning suppliers and top CPV categories. Use for “what does this ministry buy”, “who are this city’s incumbent suppliers”, “what does Banedanmark spend on”. Name matching is partial. Covers above-threshold EU procurement only — below-threshold national purchases appear on national portals.

Parameters

NameTypeRequiredDescription
buyerstringyesContracting authority name as published — matched partially (“Banedanmark”, “Ministerio de Defensa”, “Stadt Wien”).
countrystringnoBuyer country (ISO 3166-1 alpha-3), to disambiguate a common name. Comma-separate several.
categorystringnoPlain-English category resolved to CPV (“construction”, “IT services”).
cpvstringnoCPV code or prefix. Comma-separate several.
date_fromstringnoAward publication date from (YYYY-MM-DD)
date_tostringnoAward publication date to (YYYY-MM-DD)
limitnumbernoAwards to fetch and summarize, 1-250 (default 100, newest first)
pagenumberno1-based page (default 1)

Example call

Arguments

{
  "buyer": "Banedanmark"
}

curl

curl -X POST https://gateway.pipeworx.io/ted-eu/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ted_buyer_profile","arguments":{"buyer":"Banedanmark"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('ted_buyer_profile', {
  "buyer": "Banedanmark"
});

More examples

{
  "buyer": "Stadt Wien",
  "category": "construction"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "ted-eu": {
      "url": "https://gateway.pipeworx.io/ted-eu/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 16, 2026