@dennisk2025/random-geography-fact
v1.0.0
Published
Fetches a random geography-related fact to help users learn interesting information about countries, cities, or the Earth.
Readme
Random Geography Fact MCP Server
Fetches a random geography-related fact to help users learn interesting information about countries, cities, or the Earth. Runs as an MCP server compatible with Claude Desktop or other Model Context Protocol hosts.
Installation
Quick Run (no install)
npx @dennisk2025/random-geography-fact
Or Local Install
npm install @dennisk2025/random-geography-fact
You can then run:
npx random-geography-fact
Adding to Claude Desktop
Add this block to your Claude Desktop config file at:
- macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
- Windows: %APPDATA%\Claude\claude_desktop_config.json
Replace/merge inside the top-level "mcpServers" block.
{
"mcpServers": {
"geo": {
"command": "npx",
"args": ["@dennisk2025/random-geography-fact"]
}
}
}Usage
Once running, the server provides the following tool:
Tool: get_random_geography_fact
Fetches a random fun fact related to geography, such as facts about countries, cities, landforms, or unique locations.
Parameters: (none)
Example call:
{
"name": "get_random_geography_fact",
"arguments": {}
}Example result:
{
"fact": "Canada has more lakes than the rest of the world combined."
}Tool Reference
| Tool name | Description | Parameters | |-----------------------------|------------------------------------------------------------------------------------------------------------------|------------| | get_random_geography_fact | Fetches a random fun fact about countries, cities, landforms, or unique locations (geography-related trivia) | (none) |
This MCP is production-ready, robust, and does not require any API keys.
