Skip to content

Commit 487eb8b

Browse files
Merge pull request #353 from YounesAEO/update-google-maps-doc
doc: update tool names in google maps documentation
2 parents 5ecd2c2 + 3ffa630 commit 487eb8b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/google-maps/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,45 +4,45 @@ MCP Server for the Google Maps API.
44

55
## Tools
66

7-
1. `geocode`
7+
1. `maps_geocode`
88
- Convert address to coordinates
99
- Input: `address` (string)
1010
- Returns: location, formatted_address, place_id
1111

12-
2. `reverse_geocode`
12+
2. `maps_reverse_geocode`
1313
- Convert coordinates to address
1414
- Inputs:
1515
- `latitude` (number)
1616
- `longitude` (number)
1717
- Returns: formatted_address, place_id, address_components
1818

19-
3. `search_places`
19+
3. `maps_search_places`
2020
- Search for places using text query
2121
- Inputs:
2222
- `query` (string)
2323
- `location` (optional): { latitude: number, longitude: number }
2424
- `radius` (optional): number (meters, max 50000)
2525
- Returns: array of places with names, addresses, locations
2626

27-
4. `get_place_details`
27+
4. `maps_place_details`
2828
- Get detailed information about a place
2929
- Input: `place_id` (string)
3030
- Returns: name, address, contact info, ratings, reviews, opening hours
3131

32-
5. `get_distance_matrix`
32+
5. `maps_distance_matrix`
3333
- Calculate distances and times between points
3434
- Inputs:
3535
- `origins` (string[])
3636
- `destinations` (string[])
3737
- `mode` (optional): "driving" | "walking" | "bicycling" | "transit"
3838
- Returns: distances and durations matrix
3939

40-
6. `get_elevation`
40+
6. `maps_elevation`
4141
- Get elevation data for locations
4242
- Input: `locations` (array of {latitude, longitude})
4343
- Returns: elevation data for each point
4444

45-
7. `get_directions`
45+
7. `maps_directions`
4646
- Get directions between points
4747
- Inputs:
4848
- `origin` (string)

0 commit comments

Comments
 (0)