Stay Updated
Subscribe to our newsletter for the latest news and updates about MCP servers
Subscribe to our newsletter for the latest news and updates about MCP servers
Access to Google Maps API for location services and routing capabilities
The Google Maps MCP Server is a reference implementation that connects Large Language Models with Google Maps API functionality. It's part of the official Model Context Protocol server collection, designed to demonstrate how AI systems can interact with location-based services. This server allows AI assistants to perform various geographical operations through a standardized protocol, enhancing their ability to work with real-world location data.
3/5 - Moderate complexity requiring Google Maps API key setup and basic configuration knowledge.
Add the following to your claude_desktop_config.json
:
{
"mcpServers": {
"google-maps": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GOOGLE_MAPS_API_KEY",
"mcp/google-maps"
],
"env": {
"GOOGLE_MAPS_API_KEY": ""
}
}
}
}
Add the following to your claude_desktop_config.json
:
{
"mcpServers": {
"google-maps": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-google-maps"
],
"env": {
"GOOGLE_MAPS_API_KEY": ""
}
}
}
}
To build a Docker image:
docker build -t mcp/google-maps -f src/google-maps/Dockerfile .
MIT License