Data source: World Bank, Eurostat, Wikidata
https://context.gnist.ai/mcp/country-intelligence/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (2)
country_overviewMulti-source country profile — economics, trade, news, crises, and environment.
Queries World Bank, Eurostat, Wikidata, UN Comtrade, GDELT, Crisis Intelligence,
and Environmental Monitoring for a unified country overview from 7 data sources.
Returns partial results if any source is unavailable.
Args:
country_code: ISO 3166-1 alpha-2 country code (e.g. 'NO', 'US', 'DE').
Returns:
Merged data with keys: worldbank, eurostat, wikidata, trade, news, crises, environment.
Each key contains the upstream response or null if that source failed.
| Parameter | Type | Required | Description |
|---|---|---|---|
country_code | string | required | ISO 3166-1 alpha-2 country code (e.g. 'NO', 'US', 'DE'). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "country_overview",
"arguments": {
"country_code": "NO"
}
}
}report_feedbackReport a bug, feature request, or general feedback for this data source.
Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.
Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "report_feedback",
"arguments": {
"feedback": "example"
}
}
}Quick Start
curl -X POST "https://context.gnist.ai/mcp/country-intelligence/" \
-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": "country_overview", "arguments": {"country_code": "example"}}}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/mcp/country-intelligence/",
headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
json={
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "country_overview",
"arguments": {
"country_code": "example"
}
}
},
)
print(resp.json())