@cablate/mcp-google-map 0.0.30 → 0.0.31
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 +29 -26
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,47 +1,46 @@
|
|
|
1
|
-
[](https://www.npmjs.com/package/@cablate/mcp-google-map) [](./LICENSE) [](https://www.npmjs.com/package/@cablate/mcp-google-map)
|
|
2
2
|
|
|
3
|
-
<
|
|
4
|
-
<img width="380" height="200" src="https://glama.ai/mcp/servers/@cablate/mcp-google-map/badge" alt="Google Map Server MCP server" />
|
|
5
|
-
</a>
|
|
3
|
+
[<img src="https://img.shields.io/badge/VS_Code-VS_Code?style=flat-square&label=Install%20Server&color=0098FF" alt="Install in VS Code">](https://insiders.vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522google-maps%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522-y%2522%252C%2522%2540cablate%252Fmcp-google-map%2540latest%2522%252C%2522--stdio%2522%255D%252C%2522env%2522%253A%257B%2522GOOGLE_MAPS_API_KEY%2522%253A%2522YOUR_API_KEY%2522%257D%257D) [<img alt="Install in VS Code Insiders" src="https://img.shields.io/badge/VS_Code_Insiders-VS_Code_Insiders?style=flat-square&label=Install%20Server&color=24bfa5">](https://insiders.vscode.dev/redirect?url=vscode-insiders%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522google-maps%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522-y%2522%252C%2522%2540cablate%252Fmcp-google-map%2540latest%2522%252C%2522--stdio%2522%255D%252C%2522env%2522%253A%257B%2522GOOGLE_MAPS_API_KEY%2522%253A%2522YOUR_API_KEY%2522%257D%257D)
|
|
6
4
|
|
|
7
5
|
# MCP Google Map Server
|
|
8
6
|
|
|
9
|
-
|
|
7
|
+
Give your AI agent the ability to understand the physical world — geocode, route, search, and reason about locations.
|
|
8
|
+
|
|
9
|
+
- **8 tools** — geocode, reverse-geocode, search-nearby, search-places, place-details, directions, distance-matrix, elevation
|
|
10
|
+
- **3 modes** — stdio, StreamableHTTP, standalone exec CLI
|
|
11
|
+
- **Agent Skill** — built-in skill definition teaches AI how to chain geo tools ([`skills/google-maps/`](./skills/google-maps/))
|
|
10
12
|
|
|
11
|
-
|
|
12
|
-
>
|
|
13
|
-
> Google officially announced MCP support for Google Maps on December 10, 2025, introducing **[Maps Grounding Lite](https://cloud.google.com/blog/products/ai-machine-learning/announcing-official-mcp-support-for-google-services)** - a fully-managed MCP server for geospatial data and routing.
|
|
14
|
-
>
|
|
15
|
-
> This community project remains actively maintained as an alternative with different features and deployment options.
|
|
13
|
+
### vs Google Grounding Lite
|
|
16
14
|
|
|
17
|
-
|
|
15
|
+
| | This project | [Grounding Lite](https://cloud.google.com/blog/products/ai-machine-learning/announcing-official-mcp-support-for-google-services) |
|
|
16
|
+
|---|---|---|
|
|
17
|
+
| Tools | **8** | 3 |
|
|
18
|
+
| Geocoding | Yes | No |
|
|
19
|
+
| Step-by-step directions | Yes | No |
|
|
20
|
+
| Elevation | Yes | No |
|
|
21
|
+
| Distance matrix | Yes | No |
|
|
22
|
+
| Place details | Yes | No |
|
|
23
|
+
| Open source | MIT | No |
|
|
24
|
+
| Self-hosted | Yes | Google-managed only |
|
|
25
|
+
| Agent Skill | Yes | No |
|
|
18
26
|
|
|
19
|
-
|
|
27
|
+
### Quick Start
|
|
20
28
|
|
|
21
29
|
```bash
|
|
22
|
-
#
|
|
30
|
+
# stdio (Claude Desktop, Cursor, etc.)
|
|
31
|
+
npx @cablate/mcp-google-map --stdio
|
|
32
|
+
|
|
33
|
+
# exec CLI — no server needed
|
|
23
34
|
npx @cablate/mcp-google-map exec geocode '{"address":"Tokyo Tower"}'
|
|
24
|
-
npx @cablate/mcp-google-map exec search-places '{"query":"ramen in Tokyo"}'
|
|
25
35
|
|
|
26
|
-
#
|
|
36
|
+
# HTTP server
|
|
27
37
|
npx @cablate/mcp-google-map --port 3000 --apikey "YOUR_API_KEY"
|
|
28
38
|
```
|
|
29
39
|
|
|
30
|
-
All 8 tools available in both modes. See [`skills/google-maps/`](./skills/google-maps/) for the full agent skill definition.
|
|
31
|
-
|
|
32
40
|
## Special Thanks
|
|
33
41
|
|
|
34
|
-
This project has received contributions from the community.
|
|
35
42
|
Special thanks to [@junyinnnn](https://github.com/junyinnnn) for helping add support for `streamablehttp`.
|
|
36
43
|
|
|
37
|
-
## Verified Compatibility
|
|
38
|
-
|
|
39
|
-
This MCP server has been tested and verified with:
|
|
40
|
-
|
|
41
|
-
- Claude Desktop
|
|
42
|
-
- Dive Desktop
|
|
43
|
-
- MCP protocol implementations
|
|
44
|
-
|
|
45
44
|
## Available Tools
|
|
46
45
|
|
|
47
46
|
| Tool | Description |
|
|
@@ -259,4 +258,8 @@ Community participation and contributions are welcome!
|
|
|
259
258
|
|
|
260
259
|
## Star History
|
|
261
260
|
|
|
261
|
+
<a href="https://glama.ai/mcp/servers/@cablate/mcp-google-map">
|
|
262
|
+
<img width="380" height="200" src="https://glama.ai/mcp/servers/@cablate/mcp-google-map/badge" alt="Google Map Server MCP server" />
|
|
263
|
+
</a>
|
|
264
|
+
|
|
262
265
|
[](https://www.star-history.com/#cablate/mcp-google-map&Date)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cablate/mcp-google-map",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.31",
|
|
4
4
|
"mcpName": "io.github.cablate/google-map",
|
|
5
5
|
"description": "Google Maps tools for AI agents — geocode, search, directions, elevation via MCP server or standalone CLI",
|
|
6
6
|
"type": "module",
|