@cablate/mcp-google-map 0.0.34 → 0.0.35
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 +32 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -249,6 +249,38 @@ skills/
|
|
|
249
249
|
|
|
250
250
|
For enterprise security reviews, see [Security Assessment Clarifications](./SECURITY_ASSESSMENT.md) — a 23-item checklist covering licensing, data protection, credential management, tool contamination, and AI agent execution environment verification.
|
|
251
251
|
|
|
252
|
+
## Roadmap
|
|
253
|
+
|
|
254
|
+
### New Tools
|
|
255
|
+
|
|
256
|
+
| Tool | What it unlocks | Status |
|
|
257
|
+
|------|----------------|--------|
|
|
258
|
+
| `maps_static_map` | Return map images with pins/routes — multimodal AI can "see" the map | Planned |
|
|
259
|
+
| `maps_air_quality` | AQI, pollutants — health-aware travel, outdoor planning, real estate | Planned |
|
|
260
|
+
| `maps_validate_address` | Standardize and verify addresses — logistics/e-commerce | Planned |
|
|
261
|
+
| `maps_isochrone` | "Show me everything within 30 min drive" — reachability analysis | Planned |
|
|
262
|
+
| `maps_batch_geocode` | Geocode hundreds of addresses in one call — data enrichment | Planned |
|
|
263
|
+
|
|
264
|
+
### Capabilities
|
|
265
|
+
|
|
266
|
+
| Feature | What it unlocks | Status |
|
|
267
|
+
|---------|----------------|--------|
|
|
268
|
+
| Spatial Context | Agent remembers "the area we were just looking at" across turns | Research |
|
|
269
|
+
| Geo Agent Template | One command to spin up a full geo-aware AI agent | Research |
|
|
270
|
+
| Geo-Reasoning Benchmark | 10-scenario test suite measuring LLM geospatial reasoning accuracy | Research |
|
|
271
|
+
|
|
272
|
+
### Use Cases We're Building Toward
|
|
273
|
+
|
|
274
|
+
These are the real-world scenarios driving our tool decisions:
|
|
275
|
+
|
|
276
|
+
- **Travel planning** — "Plan a day trip in Tokyo" (geocode → search → directions → weather)
|
|
277
|
+
- **Real estate analysis** — "Analyze this neighborhood: schools, commute, flood risk" (search-nearby × N + elevation + distance-matrix)
|
|
278
|
+
- **Logistics optimization** — "Route these 12 deliveries efficiently from the warehouse" (plan-route)
|
|
279
|
+
- **Field sales** — "Visit 6 clients in Chicago, minimize drive time, find lunch spots" (plan-route + search-nearby)
|
|
280
|
+
- **Disaster response** — "Nearest open hospitals? Am I in a flood zone?" (search-nearby + elevation)
|
|
281
|
+
- **Content creation** — "Top 5 neighborhoods in Austin with restaurant density and airport distance" (explore-area + distance-matrix)
|
|
282
|
+
- **Accessibility** — "Wheelchair-accessible restaurants, avoid steep routes" (search-nearby + place-details + elevation)
|
|
283
|
+
|
|
252
284
|
## Changelog
|
|
253
285
|
|
|
254
286
|
See [CHANGELOG.md](./CHANGELOG.md) for version history.
|
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.35",
|
|
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",
|