Documentation Index
Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
Use this file to discover all available pages before exploring further.
Server path: /google-maps | Type: Application | PCID required: Yes
| Tool | Description |
|---|
google-maps_geocode | Convert address to geographic coordinates for Google Maps |
google-maps_search_places | Search for places by query with optional location and radius for Google Maps |
google-maps_place_details | Get detailed information about a specific place for Google Maps |
google-maps_distance_matrix | Calculate distance and travel time between origins and destinations in Maps |
google-maps_elevation | Get elevation data for locations for Google Maps |
google-maps_directions | Get directions between two locations for Google Maps |
google-maps_geocode
Convert address to geographic coordinates for Google Maps
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
address | string | Yes | — | Address to geocode |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"address": {
"type": "string",
"description": "Address to geocode"
}
},
"required": [
"PCID",
"address"
]
}
google-maps_search_places
Search for places by query with optional location and radius for Google Maps
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
query | string | Yes | — | Query to search for places |
location | object | No | — | Location to search for places |
radius | number | No | — | Radius of search in meters |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"query": {
"type": "string",
"description": "Query to search for places"
},
"location": {
"type": "object",
"properties": {
"latitude": {
"type": "number",
"description": "Latitude of location"
},
"longitude": {
"type": "number",
"description": "Longitude of location"
}
},
"description": "Location to search for places"
},
"radius": {
"type": "number",
"description": "Radius of search in meters"
}
},
"required": [
"PCID",
"query"
]
}
google-maps_place_details
Get detailed information about a specific place for Google Maps
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
place_id | string | Yes | — | Place ID to get details for |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"place_id": {
"type": "string",
"description": "Place ID to get details for"
}
},
"required": [
"PCID",
"place_id"
]
}
google-maps_distance_matrix
Calculate distance and travel time between origins and destinations in Maps
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
origins | string[] | Yes | — | Origins to calculate distance for |
destinations | string[] | Yes | — | Destinations to calculate distance for |
mode | string | No | — | Mode of transportation to use |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"origins": {
"type": "array",
"items": {
"type": "string"
},
"description": "Origins to calculate distance for"
},
"destinations": {
"type": "array",
"items": {
"type": "string"
},
"description": "Destinations to calculate distance for"
},
"mode": {
"type": "string",
"enum": [
"driving",
"walking",
"bicycling",
"transit"
],
"description": "Mode of transportation to use"
}
},
"required": [
"PCID",
"origins",
"destinations"
]
}
google-maps_elevation
Get elevation data for locations for Google Maps
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
locations | object[] | Yes | — | Locations to get elevation for |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"locations": {
"type": "array",
"items": {
"type": "object",
"properties": {
"latitude": {
"type": "number",
"description": "Latitude of location"
},
"longitude": {
"type": "number",
"description": "Longitude of location"
}
}
},
"description": "Locations to get elevation for"
}
},
"required": [
"PCID",
"locations"
]
}
google-maps_directions
Get directions between two locations for Google Maps
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
origin | string | Yes | — | Origin of direction |
destination | string | Yes | — | Destination of direction |
mode | string | No | — | Mode of transportation to use |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"origin": {
"type": "string",
"description": "Origin of direction"
},
"destination": {
"type": "string",
"description": "Destination of direction"
},
"mode": {
"type": "string",
"enum": [
"driving",
"walking",
"bicycling",
"transit"
],
"description": "Mode of transportation to use"
}
},
"required": [
"PCID",
"origin",
"destination"
]
}