@striderlabs/mcp-googlemaps 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +57 -0
- package/dist/index.js +21171 -0
- package/package.json +24 -0
package/README.md
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# @striderlabs/mcp-googlemaps
|
|
2
|
+
|
|
3
|
+
MCP server connector for Google Maps — search places, get directions, nearby search, and place details via Playwright browser automation.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @striderlabs/mcp-googlemaps
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Configuration
|
|
12
|
+
|
|
13
|
+
Set environment variables:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
export GOOGLE_EMAIL="your-email@gmail.com"
|
|
17
|
+
export GOOGLE_PASSWORD="your-password"
|
|
18
|
+
export GOOGLEMAPS_HEADLESS="true" # Set to "false" to see browser
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Tools
|
|
22
|
+
|
|
23
|
+
| Tool | Description |
|
|
24
|
+
|------|-------------|
|
|
25
|
+
| `search_places` | Search for places by query |
|
|
26
|
+
| `get_place_details` | Get detailed place information |
|
|
27
|
+
| `get_directions` | Get directions between locations |
|
|
28
|
+
| `nearby_search` | Search for places near a location |
|
|
29
|
+
| `get_reviews` | Get place reviews |
|
|
30
|
+
| `get_business_hours` | Get business hours |
|
|
31
|
+
| `save_place` | Save a place |
|
|
32
|
+
| `get_saved_places` | Get saved places |
|
|
33
|
+
| `get_traffic` | Get traffic conditions |
|
|
34
|
+
| `explore_area` | Explore places in an area |
|
|
35
|
+
|
|
36
|
+
## MCP Configuration
|
|
37
|
+
|
|
38
|
+
Add to your MCP config:
|
|
39
|
+
|
|
40
|
+
```json
|
|
41
|
+
{
|
|
42
|
+
"mcpServers": {
|
|
43
|
+
"googlemaps": {
|
|
44
|
+
"command": "npx",
|
|
45
|
+
"args": ["@striderlabs/mcp-googlemaps"],
|
|
46
|
+
"env": {
|
|
47
|
+
"GOOGLE_EMAIL": "your-email",
|
|
48
|
+
"GOOGLE_PASSWORD": "your-password"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
## License
|
|
56
|
+
|
|
57
|
+
MIT
|