名称: grounding-lite
描述: 通过 mcporter 提供位置搜索、天气和路线查询的 Google Maps Grounding Lite MCP。
主页: https://developers.google.com/maps/ai/grounding-lite
元数据: {"clawdbot":{"emoji":"🗺️","requires":{"bins":["mcporter"],"env":["GOOGLE_MAPS_API_KEY"]},"primaryEnv":"GOOGLE_MAPS_API_KEY","install":[{"id":"node","kind":"node","package":"mcporter","bins":["mcporter"],"label":"安装 mcporter (npm)"}]}}
Google Maps Grounding Lite MCP 提供基于 AI 的地理位置数据服务。当前为实验性(预发布)版本,预览期间免费使用。
gcloud beta services enable mapstools.googleapis.comexport GOOGLE_MAPS_API_KEY="你的密钥"bash
mcporter config add grounding-lite \
--url https://mapstools.googleapis.com/mcp \
--header "X-Goog-Api-Key=$GOOGLE_MAPS_API_KEY" \
--system# 搜索地点
mcporter call grounding-lite.search_places textQuery="纽约时代广场附近的披萨店"
# 查询天气
mcporter call grounding-lite.lookup_weather location='{"address":"San Francisco, CA"}' unitsSystem=IMPERIAL
# 计算路线
mcporter call grounding-lite.compute_routes origin='{"address":"SF"}' destination='{"address":"LA"}' travelMode=DRIVE
# 列出工具
mcporter list grounding-lite --schema
search_places:
- textQuery(必需):搜索关键词
- locationBias:位置偏好
- languageCode:语言代码
- regionCode:地区代码
lookup_weather:
- location(必需):地址/经纬度/地点 ID
- unitsSystem:单位制
- date:日期
- hour:小时
compute_routes:
- origin:起点
- destination(必需):终点
- travelMode:出行模式(DRIVE/WALK)