- Script: gmaps_mcp_server.py (MCP stdio, JSON-RPC 2.0)
- 6 tools: status, directions, geocode, reverse_geocode, search_places, distance_matrix
- Auth: API key via env GOOGLE_MAPS_API_KEY
- Verify: test Geocoding API con probe 'Rome, IT' ✅
- Dipendenze: googlemaps>=4.10.0
- Icone SVG pin Google Maps
11 lines
440 B
XML
11 lines
440 B
XML
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48" width="48" height="48">
|
|
<!-- Pin shadow -->
|
|
<ellipse cx="24" cy="44" rx="10" ry="3" fill="#00000033"/>
|
|
<!-- Pin body -->
|
|
<path d="M24 4C16.27 4 10 10.27 10 18c0 10 14 26 14 26s14-16 14-26c0-7.73-6.27-14-14-14z" fill="#34A853"/>
|
|
<!-- Inner circle -->
|
|
<circle cx="24" cy="18" r="8" fill="#ffffff"/>
|
|
<!-- Dot -->
|
|
<circle cx="24" cy="18" r="4" fill="#4285F4"/>
|
|
</svg>
|