feat(skills): add grounding-lite skill for Google Maps Grounding Lite MCP
Add new skill for Google Maps Grounding Lite, an experimental service that provides AI-grounded location search, weather lookup, and route computation via the MCP protocol. Features: - search_places: Find places with AI summaries and Google Maps links - lookup_weather: Current conditions and forecasts by address/coords/place ID - compute_routes: Distance and duration for driving/walking routes Implementation: - Uses mcporter MCP client for proper MCP server integration - One-time server config via mcporter config add - Cleaner tool invocation syntax (mcporter call server.tool) - Ad-hoc usage option for one-off calls without config - Includes mcporter list command for tool discovery Security: - API key security best practices documented - Recommends API key restrictions in Google Cloud Console - OAuth 2.0 suggested for production deployments Uses the same GOOGLE_MAPS_API_KEY as goplaces/local-places skills.
This commit is contained in:
parent
f5c90f0e5c
commit
e33aceb485
@ -6,6 +6,7 @@ Docs: https://docs.clawd.bot
|
||||
Status: unreleased.
|
||||
|
||||
### Changes
|
||||
- Skills: add grounding-lite skill for Google Maps Grounding Lite MCP (search places, weather, routes).
|
||||
- Agents: honor tools.exec.safeBins in exec allowlist checks. (#2281)
|
||||
- Docs: tighten Fly private deployment steps. (#2289) Thanks @dguido.
|
||||
- Gateway: warn on hook tokens via query params; document header auth preference. (#2200) Thanks @YuriNachos.
|
||||
|
||||
154
skills/grounding-lite/SKILL.md
Normal file
154
skills/grounding-lite/SKILL.md
Normal file
@ -0,0 +1,154 @@
|
||||
---
|
||||
name: grounding-lite
|
||||
description: Google Maps Grounding Lite MCP for AI-powered location search, weather, and routes via mcporter.
|
||||
homepage: https://developers.google.com/maps/ai/grounding-lite
|
||||
metadata: {"clawdbot":{"emoji":"🗺️","requires":{"bins":["mcporter"],"env":["GOOGLE_MAPS_API_KEY"]},"primaryEnv":"GOOGLE_MAPS_API_KEY"}}
|
||||
---
|
||||
|
||||
# Grounding Lite
|
||||
|
||||
Google Maps Grounding Lite provides AI-grounded location data via MCP. Use `mcporter` to call tools directly.
|
||||
|
||||
**Status**: Experimental (pre-GA), free during preview.
|
||||
|
||||
**Rate limits**: search_places (100 QPM, 1K QPD), lookup_weather (300 QPM), compute_routes (300 QPM).
|
||||
|
||||
## Setup
|
||||
|
||||
1. Install mcporter: `npm install -g mcporter`
|
||||
2. Set `GOOGLE_MAPS_API_KEY` environment variable
|
||||
3. Configure the MCP server (one-time):
|
||||
|
||||
```bash
|
||||
mcporter config add grounding-lite \
|
||||
--url https://mapstools.googleapis.com/mcp \
|
||||
--header "X-Goog-Api-Key: $GOOGLE_MAPS_API_KEY"
|
||||
```
|
||||
|
||||
### API Key Security
|
||||
|
||||
1. **Restrict your API key** in Google Cloud Console:
|
||||
- API restrictions: Allow only `mapstools.googleapis.com`
|
||||
- Application restrictions: Use IP restriction if on a fixed server
|
||||
|
||||
2. **Never hardcode keys** - use environment variables
|
||||
|
||||
3. **For production**: Consider OAuth 2.0 (better audit trails)
|
||||
|
||||
See: https://developers.google.com/maps/api-security-best-practices
|
||||
|
||||
## Search Places
|
||||
|
||||
Find places by text query with AI summaries:
|
||||
|
||||
```bash
|
||||
mcporter call grounding-lite.search_places text_query="coffee shops near Central Park"
|
||||
```
|
||||
|
||||
With location bias:
|
||||
|
||||
```bash
|
||||
mcporter call grounding-lite.search_places \
|
||||
text_query="pizza" \
|
||||
location_bias='{"center":{"latitude":40.7829,"longitude":-73.9654},"radius":2000}'
|
||||
```
|
||||
|
||||
JSON output:
|
||||
|
||||
```bash
|
||||
mcporter call grounding-lite.search_places text_query="sushi in Tokyo" --output json
|
||||
```
|
||||
|
||||
Response includes: place IDs, names, addresses, coordinates, Google Maps links, and AI summary.
|
||||
|
||||
## Lookup Weather
|
||||
|
||||
Get current weather:
|
||||
|
||||
```bash
|
||||
mcporter call grounding-lite.lookup_weather location='{"address":"Tokyo, Japan"}' units_system=METRIC
|
||||
```
|
||||
|
||||
By coordinates:
|
||||
|
||||
```bash
|
||||
mcporter call grounding-lite.lookup_weather \
|
||||
location='{"lat_lng":{"latitude":35.6762,"longitude":139.6503}}'
|
||||
```
|
||||
|
||||
By place ID:
|
||||
|
||||
```bash
|
||||
mcporter call grounding-lite.lookup_weather location='{"place_id":"ChIJ..."}'
|
||||
```
|
||||
|
||||
Forecast for a specific date/hour:
|
||||
|
||||
```bash
|
||||
mcporter call grounding-lite.lookup_weather \
|
||||
location='{"address":"Paris, France"}' \
|
||||
date='{"year":2026,"month":1,"day":28}' \
|
||||
hour=14
|
||||
```
|
||||
|
||||
Units: `METRIC` (Celsius, km/h) or `IMPERIAL` (Fahrenheit, mph).
|
||||
|
||||
## Compute Routes
|
||||
|
||||
Calculate distance and duration:
|
||||
|
||||
```bash
|
||||
mcporter call grounding-lite.compute_routes \
|
||||
origin='{"address":"San Francisco, CA"}' \
|
||||
destination='{"address":"Los Angeles, CA"}' \
|
||||
travel_mode=DRIVE
|
||||
```
|
||||
|
||||
Walking route:
|
||||
|
||||
```bash
|
||||
mcporter call grounding-lite.compute_routes \
|
||||
origin='{"address":"Times Square, NYC"}' \
|
||||
destination='{"address":"Central Park, NYC"}' \
|
||||
travel_mode=WALK
|
||||
```
|
||||
|
||||
Travel modes: `DRIVE` (default) or `WALK`.
|
||||
|
||||
Note: Returns distance/duration only. No step-by-step directions or real-time traffic.
|
||||
|
||||
## Ad-hoc Usage (without config)
|
||||
|
||||
Call directly without configuring first:
|
||||
|
||||
```bash
|
||||
mcporter call "https://mapstools.googleapis.com/mcp.search_places" \
|
||||
--header "X-Goog-Api-Key: $GOOGLE_MAPS_API_KEY" \
|
||||
text_query="restaurants near me"
|
||||
```
|
||||
|
||||
## List Available Tools
|
||||
|
||||
```bash
|
||||
mcporter list grounding-lite --schema
|
||||
```
|
||||
|
||||
## vs goplaces / local-places
|
||||
|
||||
| Feature | Grounding Lite | goplaces | local-places |
|
||||
|---------|---------------|----------|--------------|
|
||||
| Setup | mcporter + API key | Homebrew + API key | Python + API key |
|
||||
| AI Summaries | Built-in | None | None |
|
||||
| Weather | Yes | No | No |
|
||||
| Routes | Yes (basic) | No | No |
|
||||
| Place Details | Limited | Full | Full |
|
||||
| Photos/Reviews | No | Yes | Yes |
|
||||
|
||||
Use Grounding Lite for quick AI-grounded queries. Use goplaces or local-places for detailed place info.
|
||||
|
||||
## Notes
|
||||
|
||||
- Free during preview; pricing TBD after GA
|
||||
- Some features may have EEA restrictions
|
||||
- Attribution required per Google Maps Platform ToS
|
||||
- Responses contain Google Maps links - include in user-facing output
|
||||
Loading…
Reference in New Issue
Block a user