Legal
Data source: TED (Tenders Electronic Daily)
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/global-tenders/
claude_desktop_config.json
{
"mcpServers": {
"gnist-global-tenders": {
"url": "https://context.gnist.ai/mcp/global-tenders/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/global-tenders/" \
-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": "search_tenders", "arguments": {"query": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/global-tenders/
5 endpoints available:
GET /rest/global-tenders/search_tendersGET /rest/global-tenders/get_tenderGET /rest/global-tenders/get_awarded_contractsGET /rest/global-tenders/search_by_winnerGET /rest/global-tenders/report_feedback
Shell
curl "https://context.gnist.ai/rest/global-tenders/search_tenders?query=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/global-tenders/search_tenders",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"query": "example"
},
)
print(resp.json())
Command Line
Command
gc global-tenders
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (5)
search_tendersSearch active public procurement notices (tenders) across EU, UK, and US sources.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Full-text search term (e.g. "software development", "road construction"). |
country | any | optional | ISO 3166-1 alpha-2 country code to restrict search (e.g. "DE", "NO", "GB", "US"). Omit to search all EU countries via TED. |
sector_cpv | any | optional | CPV code prefix to filter by sector (e.g. "72000000" for IT services). Only applied for EU/TED searches. |
date_from | any | optional | ISO 8601 date (YYYY-MM-DD) — only return notices published on or after this date. |
value_min_eur | any | optional | Minimum estimated contract value in EUR. |
limit | integer | optional | Maximum number of results to return (1-50, default 10). (default: 10) |
get_tenderGet full details for a specific EU TED procurement notice by document number.
| Parameter | Type | Required | Description |
|---|---|---|---|
notice_id | string | required | TED notice document number (e.g. "123456-2024"). Retrieve this from search_tenders results. |
get_awarded_contractsGet recently awarded public contracts from EU TED, UK Find a Tender, or US SAM.gov.
| Parameter | Type | Required | Description |
|---|---|---|---|
country | any | optional | ISO 3166-1 alpha-2 country code (e.g. "DE", "NO", "GB", "US"). Omit for all EU countries. |
sector_cpv | any | optional | CPV code prefix to filter by sector. Only applied for EU/TED searches. |
year | any | optional | Calendar year to filter awards. Omit for most recent. |
limit | integer | optional | Maximum number of results to return (1-50, default 10). (default: 10) |
search_by_winnerFind public contracts won by a named company.
| Parameter | Type | Required | Description |
|---|---|---|---|
company_name | string | required | Company name to search for (e.g. "Accenture", "IBM"). |
country | any | optional | ISO 3166-1 alpha-2 country code to restrict search. |
year_from | any | optional | Start year for award date filter (inclusive). |
year_to | any | optional | End year for award date filter (inclusive). |
limit | integer | optional | Maximum number of results to return (1-50, default 10). (default: 10) |
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") |