get_directions
Calculate step-by-step directions between two locations using the Multi-MCPs server, integrating multiple third-party APIs to provide accurate and unified navigation results.
Instructions
Get directions between origin and destination
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination | Yes | ||
origin | Yes |
Input Schema (JSON Schema)
{
"properties": {
"destination": {
"type": "string"
},
"origin": {
"type": "string"
}
},
"required": [
"origin",
"destination"
],
"type": "object"
}