Government
Data source: TED (Tenders Electronic Daily) — Publications Office of the EU
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"}}}'
REST API
API Root
https://context.gnist.ai/rest/ted/
3 endpoints available:
GET /rest/ted/search_noticesGET /rest/ted/get_noticeGET /rest/ted/report_feedback
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())
Command Line
Command
gc ted
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (3)
search_noticesSearch EU/EEA public procurement notices on TED (Tenders Electronic Daily).
| Parameter | Type | Required | Description |
|---|---|---|---|
text | any | optional | Free text search across notice titles and descriptions (e.g. "software", "construction", "consulting"). |
country | any | optional | Filter by buyer country using 3-letter ISO code (e.g. 'NOR' for Norway, 'DEU' for Germany, 'FRA' for France, 'SWE' for Sweden). |
cpv_code | any | optional | Filter by CPV (Common Procurement Vocabulary) code — 8-digit EU classification (e.g. '72000000' for IT services, '45000000' for construction). |
published_after | any | optional | Filter notices published on or after this date (YYYY-MM-DD or YYYYMMDD). |
published_before | any | optional | Filter notices published on or before this date (YYYY-MM-DD or YYYYMMDD). |
notice_type | any | optional | Filter by notice type: 'cn-standard' (contract notice), 'can-standard' (contract award), 'pin-only' (prior information), 'can-modif' (modification), 'veat' (voluntary transparency), 'corr' (corrigendum). |
procedure_type | any | optional | Filter by procedure: 'open', 'restricted', 'neg-w-call' (negotiated with call), 'neg-wo-call' (negotiated without call), 'comp-dial' (competitive dialogue), 'innovation'. |
page | integer | optional | Page number (default 1). (default: 1) |
page_size | integer | optional | Results per page (1-50, default 20). (default: 20) |
get_noticeGet detailed information about a specific TED procurement notice.
| Parameter | Type | Required | Description |
|---|---|---|---|
publication_number | string | required | TED publication number in format NNNN-YYYY (e.g. "555-2026", "96926-2016"). Found in search results. |
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |