@@ -4,45 +4,45 @@ MCP Server for the Google Maps API.
4
4
5
5
## Tools
6
6
7
- 1 . ` geocode `
7
+ 1 . ` maps_geocode `
8
8
- Convert address to coordinates
9
9
- Input: ` address ` (string)
10
10
- Returns: location, formatted_address, place_id
11
11
12
- 2 . ` reverse_geocode `
12
+ 2 . ` maps_reverse_geocode `
13
13
- Convert coordinates to address
14
14
- Inputs:
15
15
- ` latitude ` (number)
16
16
- ` longitude ` (number)
17
17
- Returns: formatted_address, place_id, address_components
18
18
19
- 3 . ` search_places `
19
+ 3 . ` maps_search_places `
20
20
- Search for places using text query
21
21
- Inputs:
22
22
- ` query ` (string)
23
23
- ` location ` (optional): { latitude: number, longitude: number }
24
24
- ` radius ` (optional): number (meters, max 50000)
25
25
- Returns: array of places with names, addresses, locations
26
26
27
- 4 . ` get_place_details `
27
+ 4 . ` maps_place_details `
28
28
- Get detailed information about a place
29
29
- Input: ` place_id ` (string)
30
30
- Returns: name, address, contact info, ratings, reviews, opening hours
31
31
32
- 5 . ` get_distance_matrix `
32
+ 5 . ` maps_distance_matrix `
33
33
- Calculate distances and times between points
34
34
- Inputs:
35
35
- ` origins ` (string[ ] )
36
36
- ` destinations ` (string[ ] )
37
37
- ` mode ` (optional): "driving" | "walking" | "bicycling" | "transit"
38
38
- Returns: distances and durations matrix
39
39
40
- 6 . ` get_elevation `
40
+ 6 . ` maps_elevation `
41
41
- Get elevation data for locations
42
42
- Input: ` locations ` (array of {latitude, longitude})
43
43
- Returns: elevation data for each point
44
44
45
- 7 . ` get_directions `
45
+ 7 . ` maps_directions `
46
46
- Get directions between points
47
47
- Inputs:
48
48
- ` origin ` (string)
0 commit comments