Google Maps MCP Server

Productivitystdiov0.6.2
Repositorio

MCP server for the Google Maps Platform. Enables AI agents to geocode addresses, search for places, retrieve place details, and compute directions and distances, giving models location awareness and routing from AI-powered tools.

Conectar

Añade esta configuración a .claude/mcp.json

{
  "mcpServers": {
    "google-maps": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-google-maps"
      ],
      "env": {
        "GOOGLE_MAPS_API_KEY": "<YOUR_GOOGLE_MAPS_API_KEY>"
      }
    }
  }
}

Herramientas (3)

maps_geocode

Convert an address into latitude/longitude coordinates.

{
  "type": "object",
  "required": [
    "address"
  ],
  "properties": {
    "address": {
      "type": "string",
      "description": "Address to geocode"
    }
  }
}

maps_search_places

Search for places near a location using a text query.

{
  "type": "object",
  "required": [
    "query"
  ],
  "properties": {
    "query": {
      "type": "string",
      "description": "Text query (for example \"coffee near me\")"
    },
    "radius": {
      "type": "integer",
      "description": "Search radius in meters"
    },
    "location": {
      "type": "string",
      "description": "Center location as \"lat,lng\""
    }
  }
}

maps_directions

Get directions and travel time between an origin and destination.

{
  "type": "object",
  "required": [
    "origin",
    "destination"
  ],
  "properties": {
    "mode": {
      "type": "string",
      "description": "Travel mode (driving, walking, bicycling, transit)"
    },
    "origin": {
      "type": "string",
      "description": "Starting address or coordinates"
    },
    "destination": {
      "type": "string",
      "description": "Ending address or coordinates"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Model Context Protocol (@modelcontextprotocol)
Repositorio
https://github.com/modelcontextprotocol/servers
Licencia
MIT
Versión
0.6.2
Estrellas
1,876
Última actualización
9 de julio de 2026