GnistAI GnistAI
Log in

TED (EU/EEA Public Procurement)

EU/EEA public procurement notices from TED (Tenders Electronic Daily) — search tenders, contract notices, awards, and modifications across all EU/EEA member states including Norway.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 3 tools tools 3 3 Government

Data source: TED (Tenders Electronic Daily) — Publications Office of the EU

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/ted/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-ted": {
      "url": "https://context.gnist.ai/mcp/ted/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/ted/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "get_notice", "arguments": {"publication_number": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/ted/

3 endpoints available:

Shell
curl "https://context.gnist.ai/rest/ted/get_notice?publication_number=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/ted/get_notice",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "publication_number": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc ted

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (3)

search_notices
Search EU/EEA public procurement notices on TED (Tenders Electronic Daily).
ParameterTypeRequiredDescription
textanyoptionalFree text search across notice titles and descriptions (e.g. "software", "construction", "consulting").
countryanyoptionalFilter by buyer country using 3-letter ISO code (e.g. 'NOR' for Norway, 'DEU' for Germany, 'FRA' for France, 'SWE' for Sweden).
cpv_codeanyoptionalFilter by CPV (Common Procurement Vocabulary) code — 8-digit EU classification (e.g. '72000000' for IT services, '45000000' for construction).
published_afteranyoptionalFilter notices published on or after this date (YYYY-MM-DD or YYYYMMDD).
published_beforeanyoptionalFilter notices published on or before this date (YYYY-MM-DD or YYYYMMDD).
notice_typeanyoptionalFilter by notice type: 'cn-standard' (contract notice), 'can-standard' (contract award), 'pin-only' (prior information), 'can-modif' (modification), 'veat' (voluntary transparency), 'corr' (corrigendum).
procedure_typeanyoptionalFilter by procedure: 'open', 'restricted', 'neg-w-call' (negotiated with call), 'neg-wo-call' (negotiated without call), 'comp-dial' (competitive dialogue), 'innovation'.
pageintegeroptionalPage number (default 1). (default: 1)
page_sizeintegeroptionalResults per page (1-50, default 20). (default: 20)
get_notice
Get detailed information about a specific TED procurement notice.
ParameterTypeRequiredDescription
publication_numberstringrequiredTED publication number in format NNNN-YYYY (e.g. "555-2026", "96926-2016"). Found in search results.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related