Home/Servers/Google Maps MCP Server

Google Maps MCP Server

by Anthropic ยท โญ 1.7k stars ยท updated 2 months ago

Location services, directions, and place details via Google Maps API. Get coordinates, calculate routes, find nearby places, and geocode addresses.

86
Very Good

Quality Score Breakdown

maintenance87/100
community84/100
documentation87/100
compatibility86/100

Use Cases

  • โœ“get directions
  • โœ“find places
  • โœ“geocode addresses
  • โœ“calculate routes

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "google-maps": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-google-maps"
      ],
      "env": {
        "GOOGLE_MAPS_API_KEY": "YOUR_GOOGLE_MAPS_API_KEY"
      }
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "google-maps": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-google-maps"
      ],
      "env": {
        "GOOGLE_MAPS_API_KEY": "YOUR_GOOGLE_MAPS_API_KEY"
      }
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "google-maps": {
        "command": "npx",
        "args": [
          "-y",
          "@modelcontextprotocol/server-google-maps"
        ],
        "env": {
          "GOOGLE_MAPS_API_KEY": "YOUR_GOOGLE_MAPS_API_KEY"
        }
      }
    }
  }
}
โ† Back to all servers