country-analytics-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@country-analytics-mcpWhat was France's GDP in 2022 in US dollars?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
🌍 country-analytics-mcp
Ask an AI plain-language questions about world economics — answered live from three public APIs that disagree with each other.
"What was France's GDP in 2022 in US dollars?" · "Convert that to euros at the Dec 30 2022 rate." · "What's Europe's total GDP — and who did you exclude, and why?"
GDP, population, GDP per capita, regional totals in your currency, rankings — reconciled live (nothing hard-coded, no keys, no accounts) and fully traceable: every answer names its countries, years, FX rate, and exclusions.
⚡ Step 1 — Connect it to your AI (60 seconds, nothing to install)
The server is already running on Azure. Paste this URL into your AI client:
https://country-analytics-mcp.grayriver-35df865c.eastus.azurecontainerapps.io/mcp🟠 Claude (claude.ai or Claude Desktop)
Settings → Connectors → Add custom connector
Name:
country-analytics· URL: the one above · no authenticationAdd, then start a chat and ask away — Claude picks the tools itself.
🟢 ChatGPT
Settings → Apps & Connectors → Advanced settings → enable Developer mode
Back in Connectors → Create: name
country-analytics, MCP server URL as above, Authentication: None → saveIn a new chat, enable the connector (via the composer's tools / Developer mode menu) and ask your question.
(Custom connectors require a paid plan on both platforms; exact menu names shift occasionally.)
🔍 No paid plan? MCP Inspector works too
npx @modelcontextprotocol/inspectorTransport Streamable HTTP → paste the URL → Connect → call the 8 tools from a form UI.
💤 The app scales to zero when idle — the first request after a quiet spell takes ~10 extra seconds to cold-start. Health check:
/health
Related MCP server: World Bank MCP Server
💬 Step 2 — Things worth asking
Ask this… | …and notice |
How many countries does the source list for Europe? | 53 — and 5 of them have no World Bank data (it says which) |
France's GDP in 2022, in USD? | exact World Bank figure, year pinned |
Now in euros, at the Dec 30 2022 rate | conversion pinned to the ECB rate, date echoed back |
Europe's total GDP in euros? | the answer states its scope, FX date, and every excluded country |
Same, but using the World Bank's definition of Europe | a different set (Central Asia in, Malta out — yes, really) |
Top 5 European countries by GDP per capita | rankings with the year each value actually came from |
What couldn't you reconcile for Europe? | the full flagged-issues ledger |
💻 Run it locally (clean checkout → connected client)
No hosted dependency required — the same server runs on your machine with Python 3.10+:
git clone https://github.com/Satyampatel779/country-analytics-mcp.git
cd country-analytics-mcp
python -m venv .venv
.venv\Scripts\pip install . # macOS/Linux: .venv/bin/pip install .Transport | Command |
stdio (Claude Desktop, Inspector) |
|
HTTP at |
|
Docker (identical to the hosted image) |
|
Claude Desktop (stdio): merge client-configs/claude_desktop_config.json into your claude_desktop_config.json (Settings → Developer → Edit Config), fix the absolute path, restart:
{
"mcpServers": {
"country-analytics": {
"command": "C:\\path\\to\\country-analytics-mcp\\.venv\\Scripts\\python.exe",
"args": ["-m", "country_analytics.server"]
}
}
}MCP Inspector (stdio or HTTP): step-by-step in client-configs/mcp_inspector.md.
✅ Prove it works
.venv\Scripts\pip install ".[dev]"
.venv\Scripts\python -m pytest -q # 11 live tests, both MCP transportsExpected values are cross-checked against independent direct fetches of the same live APIs — not constants.
🔧 What's under the hood
Three keyless public services, each speaking a different protocol, joined on ISO2 codes (never names — the sources spell them differently):
Source | Protocol | Provides |
GraphQL | Which countries are on a continent (ISO2, name, currency) | |
REST, | GDP ( | |
REST | ECB FX rates, latest or pinned to a date |
The 8 tools
Tool | Answers |
| continent codes + country counts |
| the full source list with join status per country |
| one country, one number, fully traced |
| regional totals — every assumption a parameter |
| top-N / bottom-N |
| pinned or latest FX conversion |
| everything excluded, unmatched, or flagged — with reasons |
| join key, defaults, and which parameters change them |
Judgment calls are parameters, not hard-coded
scope— geographic continent (default) vs. the World Bank region: for Europe the WB set adds Central Asia and drops Malta (the World Bank files it under MENA — flagged, of course).year— pinned exactly, orlatestwalks back past null years per country and reports the year used.missing_policy— exclude-and-list (default) or walk back to the most recent earlier value.fx_date— defaults to the pinned year's last trading day (2022 → 2022-12-30); pin any date you like.Refuses to guess — currencies outside Frankfurter's 30 (Serbian dinar, hryvnia…) return the supported list instead of an invented rate.
📄 More
WRITEUP.md — sources & join choices, every disagreement found, every assumption, production notes (≤1 page, written for a non-technical stakeholder).
samples/sample_run_output.md — a real timestamped run: the reconciled Europe table, computed metrics, and the flagged-issues list, kept as a reference in case a source is down during evaluation.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Macro data for AI agents: GDP, inflation, unemployment & trade, any country. No API keys.
Macro data for AI agents: GDP, inflation, unemployment and more (World Bank, US BLS). No keys.
490+ economic & demographic indicators for 218 countries from IMF, World Bank, UN, FRED.
Live & historical FX rates and currency conversion for AI agents. No API keys.
Related MCP Servers
- FlicenseBqualityFmaintenanceEnables AI assistants to interact with the World Bank open data API, allowing for listing and analysis of indicators across available countries.150
- AlicenseNot gradedqualityDmaintenanceServer that brings World Bank Open Data to AI assistants. 10 tools · Zero authentication · LRU caching · Sparkline trends · Cross-country comparisons1MIT
- FlicenseNot gradedqualityDmaintenanceExposes World Bank development data to AI agents via local CSV resources and live API tools, enabling queries about GDP, population, and other indicators.

Thesma MCP Serverofficial
AlicenseAqualityDmaintenanceGives AI assistants access to SEC filings, BLS employment, Census demographics, and SBA lending data via natural language queries.60MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Satyampatel779/country-analytics-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server