@striderlabs/mcp-googlemaps
v1.0.0
Published
MCP server connector for Google Maps — search places, get directions, nearby search, and place details via Playwright browser automation
Downloads
23
Maintainers
Readme
@striderlabs/mcp-googlemaps
MCP server connector for Google Maps — search places, get directions, nearby search, and place details via Playwright browser automation.
Installation
npm install @striderlabs/mcp-googlemapsConfiguration
Set environment variables:
export GOOGLE_EMAIL="[email protected]"
export GOOGLE_PASSWORD="your-password"
export GOOGLEMAPS_HEADLESS="true" # Set to "false" to see browserTools
| Tool | Description |
|------|-------------|
| search_places | Search for places by query |
| get_place_details | Get detailed place information |
| get_directions | Get directions between locations |
| nearby_search | Search for places near a location |
| get_reviews | Get place reviews |
| get_business_hours | Get business hours |
| save_place | Save a place |
| get_saved_places | Get saved places |
| get_traffic | Get traffic conditions |
| explore_area | Explore places in an area |
MCP Configuration
Add to your MCP config:
{
"mcpServers": {
"googlemaps": {
"command": "npx",
"args": ["@striderlabs/mcp-googlemaps"],
"env": {
"GOOGLE_EMAIL": "your-email",
"GOOGLE_PASSWORD": "your-password"
}
}
}
}License
MIT
