Overview
MCP-Geo is a geocoding server built using GeoPY that provides an interface for geocoding addresses and locations, as well as performing reverse geocoding.
To use MCP-Geo, clone the repository from GitHub, install the required dependencies, and configure the server settings. You can install it either for Claude Desktop or in other environments.
- Geocoding and reverse geocoding capabilities. - Batch geocoding functions for multiple addresses. - Accurate distance calculations between addresses or geographical coordinates. - Rate limiting and error handling to ensure stability and reliability.
- Geocoding user addresses for mapping applications.
- Performing reverse geocoding for displaying information on geographical points.
- Calculating distances for logistics and delivery services.
Add to your AI client
Use these steps to connect MCP-Geo in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-geo-webcoderz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-geo-webcoderz"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-geo-webcoderz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-geo-webcoderz"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-geo-webcoderz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-geo-webcoderz"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-geo-webcoderz": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-geo-webcoderz"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-geo-webcoderz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-geo-webcoderz"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-geo-webcoderz": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-geo-webcoderz"
]
}
}
}