MCP Google Map Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| GOOGLE_MAPS_API_KEY | Yes | Your Google Maps API key obtained from Google Cloud Console |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_nearbyC | 搜尋附近的地點 |
| get_place_detailsC | 獲取特定地點的詳細資訊 |
| maps_geocodeC | 將地址轉換為座標 |
| maps_reverse_geocodeC | 將座標轉換為地址 |
| maps_distance_matrixC | 計算多個起點和終點之間的距離和時間 |
| maps_directionsC | 獲取兩點之間的路線指引 |
| maps_elevationC | 獲取位置的海拔數據 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
每個工具都有明確且不同的用途:get_place_details 用於地點詳細資訊,maps_directions 用於路線指引,maps_distance_matrix 用於距離計算,maps_elevation 用於海拔數據,maps_geocode 用於地址轉座標,maps_reverse_geocode 用於座標轉地址,search_nearby 用於搜尋附近地點。這些工具之間沒有重疊或混淆的風險,因為每個都針對 Google Maps API 的特定功能。
工具命名整體上一致,使用 snake_case 格式和描述性名稱,如 maps_directions、maps_geocode 等,但 get_place_details 和 search_nearby 沒有前綴 'maps_',這是一個小偏差。儘管如此,命名模式仍然清晰可讀,沒有混用不同風格。
7 個工具對於 Google Maps 伺服器的範圍來說非常合適。它涵蓋了核心功能,如地理編碼、路線規劃、距離計算和地點搜尋,沒有過多或過少的工具。每個工具都有其存在的價值,符合典型的 3-15 個工具的範圍。
工具集完整覆蓋了 Google Maps API 的關鍵操作,包括地理編碼(正向和反向)、路線指引、距離矩陣、海拔數據、地點詳細資訊和附近搜尋。沒有明顯的缺口,代理可以處理從地址轉換到路線規劃的完整工作流程,沒有死胡同。