loading…
Search for a command to run...
loading…
MCP server for the Geomelon geographic API, enabling AI clients to search cities, countries, regions, and languages.
MCP server for the Geomelon geographic API, enabling AI clients to search cities, countries, regions, and languages.
MCP server for the Geomelon geographic API. Exposes cities, countries, regions, and languages as tools any MCP-compatible AI client can call.
Two transports are included:
| Binary | Transport | Use case |
|---|---|---|
geomelon-mcp |
stdio | Claude Desktop, Cursor, Cline, Continue |
geomelon-mcp-http |
HTTP (Streamable) | Claude Code, remote / hosted server |
Create a .env file in the directory you'll run the server from:
cp .env.example .env
# then edit .env and set GEOMELON_API_KEY
Start the server (dotenv loads .env automatically):
npx geomelon-mcp-http
Register it with Claude Code:
claude mcp add --transport http geomelon http://localhost:3000/mcp
Verify it's connected:
claude mcp list
The server must be running whenever you use Claude Code. To use a different port set PORT=your_port and update the URL in the claude mcp add command accordingly.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"geomelon": {
"command": "npx",
"args": ["-y", "geomelon-mcp"],
"env": {
"GEOMELON_API_KEY": "your_rapidapi_key_here"
}
}
}
}
Restart Claude Desktop after saving.
Add to your editor's MCP config:
{
"geomelon": {
"command": "npx",
"args": ["-y", "geomelon-mcp"],
"env": {
"GEOMELON_API_KEY": "your_rapidapi_key_here"
}
}
}
Create a .env file on your server:
cp .env.example .env
# set GEOMELON_API_KEY and PORT in .env
Start the server:
npx geomelon-mcp-http
Then register with any MCP client using http://your-host:3000/mcp as the URL.
The HTTP transport is stateless — each request is independent, no session management needed.
| Tool | Description |
|---|---|
search_cities |
Search by name, country code, region, population range, sort order |
get_city |
Full details for a city by UUID |
cities_by_coordinates_closest |
Cities nearest to a lat/lon, ordered by distance |
cities_by_coordinates_largest |
Largest cities near a lat/lon, ordered by population |
cities_distance |
Distance in km between two cities |
| Tool | Description |
|---|---|
list_countries |
List all countries, filter by telephone dialing code |
get_country |
Full details for a country by UUID (includes translations and regions) |
| Tool | Description |
|---|---|
list_regions |
List regions, filter by country UUID |
get_region |
Full details for a region by UUID |
| Tool | Description |
|---|---|
list_languages |
List all languages in the database |
get_language |
Details for a language by UUID |
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"geomelon-mcp": {
"command": "npx",
"args": []
}
}
}