The Google Maps MCP Server provides tools for working with Google Maps API functionality through the Model Context Protocol. It allows you to access geocoding, place search, directions, distance calculations, and more through a standardized interface.
maps_geocode: Converts an address to coordinates
address
(string)maps_reverse_geocode: Converts coordinates to an address
latitude
(number)longitude
(number)maps_search_places: Searches for places using a text query
query
(string)location
(optional): { latitude: number, longitude: number }
radius
(optional): number (meters, max 50000)maps_place_details: Gets detailed information about a place
place_id
(string)maps_distance_matrix: Calculates distances and times between points
origins
(string[])destinations
(string[])mode
(optional): "driving" | "walking" | "bicycling" | "transit"maps_directions: Gets directions between points
origin
(string)destination
(string)mode
(optional): "driving" | "walking" | "bicycling" | "transit"locations
(array of {latitude, longitude}
)Before using the Google Maps MCP Server, you need to obtain a Google Maps API key:
Add the Google Maps MCP Server to your claude_desktop_config.json
file using one of the following methods:
{
"mcpServers": {
"google-maps": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GOOGLE_MAPS_API_KEY",
"mcp/google-maps"
],
"env": {
"GOOGLE_MAPS_API_KEY": "<YOUR_API_KEY>"
}
}
}
}
Make sure to replace <YOUR_API_KEY>
with your actual Google Maps API key.
{
"mcpServers": {
"google-maps": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-google-maps"
],
"env": {
"GOOGLE_MAPS_API_KEY": "<YOUR_API_KEY>"
}
}
}
}
Again, replace <YOUR_API_KEY>
with your actual Google Maps API key.
To convert an address to coordinates:
const result = await maps_geocode({
address: "1600 Amphitheatre Parkway, Mountain View, CA"
});
console.log(result.location); // { latitude: 37.422, longitude: -122.084 }
console.log(result.formatted_address); // "1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA"
To search for restaurants near a specific location:
const places = await maps_search_places({
query: "restaurants",
location: { latitude: 37.422, longitude: -122.084 },
radius: 2000
});
// Returns array of restaurant data within 2km of the specified location
To get driving directions between two locations:
const directions = await maps_directions({
origin: "San Francisco, CA",
destination: "Palo Alto, CA",
mode: "driving"
});
// Returns detailed route information with steps, distance and duration
To get the distance and travel time between multiple locations:
const matrix = await maps_distance_matrix({
origins: ["Seattle, WA", "Portland, OR"],
destinations: ["San Francisco, CA", "Los Angeles, CA"],
mode: "driving"
});
// Returns a matrix of distances and durations between each origin-destination pair
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.