cpv_lookup

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

Resolve a plain-English procurement category (“construction”, “hospital equipment”, “IT”) to the CPV codes TED indexes it under, or explain what a CPV code covers. Use before search_notices when you know the subject but not the code.

Parameters

NameTypeRequiredDescription
termstringyesPlain-English category (“construction”) or a CPV code (“45000000”, “45”).

Example call

Arguments

{
  "term": "construction"
}

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":"cpv_lookup","arguments":{"term":"construction"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('cpv_lookup', {
  "term": "construction"
});

More examples

{
  "term": "45000000"
}

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 11, 2026