inteldump-mcp
v0.1.0
Published
MCP server for IntelDump — query CIA World Factbook data for 260+ countries across 35 years
Maintainers
Readme
IntelDump MCP Server
Query CIA World Factbook data for 260+ countries across 35 years of history — directly inside Claude.
Setup
Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"inteldump": {
"command": "npx",
"args": ["inteldump-mcp"],
"env": {
"INTELDUMP_API_KEY": "your_api_key_here"
}
}
}
}VS Code / Cursor
{
"inteldump": {
"command": "npx",
"args": ["inteldump-mcp"],
"env": {
"INTELDUMP_API_KEY": "your_api_key_here"
}
}
}Environment Variables
| Variable | Required | Description |
|----------|----------|-------------|
| INTELDUMP_API_KEY | No | Your API key from inteldump.site |
| INTELDUMP_API_URL | No | Custom API URL (default: https://inteldump.site) |
Tools
get_country
Get comprehensive country data from the CIA World Factbook.
Parameters:
code(required): Country ISO code (e.g. 'US', 'CN', 'GB')year(optional): Data year (default: 2025, historical data back ~35 years)
Returns: Demographics, economy, military, geography, government, and more grouped by category.
search_factbook
Full-text search across all CIA World Factbook data.
Parameters:
query(required): Search query (e.g. 'uranium production', 'GDP per capita', 'naval forces')
Returns: Matching results across all countries with context snippets.
License
MIT
