GnistAI GnistAI
Log in

Country Intelligence

Comprehensive country profiles combining economics, statistics, and knowledge base data. One query gives you GDP, demographics, trade, and more for any country.

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

Data source: World Bank, Eurostat, Wikidata

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/country-intelligence/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-country-intelligence": {
      "url": "https://context.gnist.ai/mcp/country-intelligence/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
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"}}}'

API REST API

API Root https://context.gnist.ai/rest/country-intelligence/

2 endpoints available:

Shell
curl "https://context.gnist.ai/rest/country-intelligence/country_overview?country_code=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/country-intelligence/country_overview",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "country_code": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc country-intelligence

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

Install
pip install gnistai

Available Tools (2)

country_overview
Multi-source country profile — economics, trade, news, crises, and environment.
ParameterTypeRequiredDescription
country_codestringrequiredISO 3166-1 alpha-2 country code (e.g. 'NO', 'US', 'DE').
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related