Government
Data source: Doffin, TED
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"}}}'
REST API
API Root
https://context.gnist.ai/rest/public-procurement/
4 endpoints available:
GET /rest/public-procurement/search_tendersGET /rest/public-procurement/get_tenderGET /rest/public-procurement/list_procurement_sourcesGET /rest/public-procurement/report_feedback
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())
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_tendersSearch for public procurement tenders across Doffin (Norway) and TED (EU/EEA).
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Search query — keywords, buyer name, or topic. |
max_results | integer | optional | Maximum number of results. (default: 20) |
country | any | optional | ISO 3166-1 alpha-3 country code (e.g. NOR, DEU, FRA). Omit for all countries. |
cpv_code | any | optional | CPV code to filter by sector (8 digits, e.g. 72000000 for IT). |
published_after | any | optional | Only tenders published after this date (YYYY-MM-DD). |
published_before | any | optional | Only tenders published before this date (YYYY-MM-DD). |
get_tenderLook up a specific procurement notice by ID across all sources.
| Parameter | Type | Required | Description |
|---|---|---|---|
notice_id | string | required | Notice ID — Doffin format (YYYY-NNNNNN) or TED format (NNNN-YYYY). |
list_procurement_sourcesList all registered procurement data sources and their status.
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") |