GnistAI GnistAI
Log in

Global Tenders

EU public procurement notices — contract opportunities and award results.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 5 tools tools 5 5 Legal

Data source: TED (Tenders Electronic Daily)

MCP 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"}}}'

API REST API

API Root https://context.gnist.ai/rest/global-tenders/

5 endpoints available:

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())

OpenAPI Spec  ·  Full API Docs

CLI 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_tenders
Search active public procurement notices (tenders) across EU, UK, and US sources.
ParameterTypeRequiredDescription
querystringrequiredFull-text search term (e.g. "software development", "road construction").
countryanyoptionalISO 3166-1 alpha-2 country code to restrict search (e.g. "DE", "NO", "GB", "US"). Omit to search all EU countries via TED.
sector_cpvanyoptionalCPV code prefix to filter by sector (e.g. "72000000" for IT services). Only applied for EU/TED searches.
date_fromanyoptionalISO 8601 date (YYYY-MM-DD) — only return notices published on or after this date.
value_min_euranyoptionalMinimum estimated contract value in EUR.
limitintegeroptionalMaximum number of results to return (1-50, default 10). (default: 10)
get_tender
Get full details for a specific EU TED procurement notice by document number.
ParameterTypeRequiredDescription
notice_idstringrequiredTED notice document number (e.g. "123456-2024"). Retrieve this from search_tenders results.
get_awarded_contracts
Get recently awarded public contracts from EU TED, UK Find a Tender, or US SAM.gov.
ParameterTypeRequiredDescription
countryanyoptionalISO 3166-1 alpha-2 country code (e.g. "DE", "NO", "GB", "US"). Omit for all EU countries.
sector_cpvanyoptionalCPV code prefix to filter by sector. Only applied for EU/TED searches.
yearanyoptionalCalendar year to filter awards. Omit for most recent.
limitintegeroptionalMaximum number of results to return (1-50, default 10). (default: 10)
search_by_winner
Find public contracts won by a named company.
ParameterTypeRequiredDescription
company_namestringrequiredCompany name to search for (e.g. "Accenture", "IBM").
countryanyoptionalISO 3166-1 alpha-2 country code to restrict search.
year_fromanyoptionalStart year for award date filter (inclusive).
year_toanyoptionalEnd year for award date filter (inclusive).
limitintegeroptionalMaximum number of results to return (1-50, default 10). (default: 10)
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related