GnistAI GnistAI
Log in

Public Procurement

Find government tenders across Norway and the EU/EEA. Search by keyword, sector, or date across Doffin and TED databases simultaneously.

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

Data source: Doffin, TED

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/public-procurement/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-public-procurement": {
      "url": "https://context.gnist.ai/mcp/public-procurement/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/public-procurement/" \
  -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/public-procurement/

4 endpoints available:

Shell
curl "https://context.gnist.ai/rest/public-procurement/search_tenders?query=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/public-procurement/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 public-procurement

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

Install
pip install gnistai

Available Tools (4)

search_tenders
Search for public procurement tenders across Doffin (Norway) and TED (EU/EEA).
ParameterTypeRequiredDescription
querystringrequiredSearch query — keywords, buyer name, or topic.
max_resultsintegeroptionalMaximum number of results. (default: 20)
countryanyoptionalISO 3166-1 alpha-3 country code (e.g. NOR, DEU, FRA). Omit for all countries.
cpv_codeanyoptionalCPV code to filter by sector (8 digits, e.g. 72000000 for IT).
published_afteranyoptionalOnly tenders published after this date (YYYY-MM-DD).
published_beforeanyoptionalOnly tenders published before this date (YYYY-MM-DD).
get_tender
Look up a specific procurement notice by ID across all sources.
ParameterTypeRequiredDescription
notice_idstringrequiredNotice ID — Doffin format (YYYY-NNNNNN) or TED format (NNNN-YYYY).
list_procurement_sources
List all registered procurement data sources and their status.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related