MCP Google Map Server
A powerful Model Context Protocol (MCP) server providing comprehensive Google Maps API integration with LLM processing capabilities.
Overview
MCP Google Map Server is a powerful Model Context Protocol (MCP) server that provides comprehensive integration with the Google Maps API, enhanced with LLM processing capabilities.
To use the MCP Google Map Server, install it via NPM and run it from the command line. For integration with Dive Desktop, add the MCP server configuration in the application settings.
- Location search and information retrieval - Geocoding and reverse geocoding - Detailed place information
- Integrating Google Maps functionalities into applications.
- Providing location-based services and information retrieval.
- Enhancing applications with geocoding capabilities.
Add to your AI client
Use these steps to connect MCP Google Map Server 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-google-map-cablate": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-map-cablate"
]
}
}
}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-google-map-cablate": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-map-cablate"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-google-map-cablate": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-map-cablate"
]
}
}
}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-google-map-cablate": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-map-cablate"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-google-map-cablate": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-map-cablate"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-google-map-cablate": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-google-map-cablate"
]
}
}
}FAQ
How do I set up the Google Maps API?
You need to create a project in Google Cloud Console, enable Google Maps API services, obtain an API key, and set the `GOOGLE_MAPS_API_KEY` environment variable.
Is there a community for contributions?
Yes! Community participation is welcome, and you can contribute by reporting issues, submitting pull requests, or providing suggestions.