get_coordinates
Retrieve latitude and longitude for any specified city using the get_coordinates tool on the MCP Weather Server.
Instructions
Returns the latitude and longitude of the specified city as a tuple.
Args:
city: the city of
Input Schema
Name | Required | Description | Default |
---|---|---|---|
city | Yes |
Input Schema (JSON Schema)
{
"properties": {
"city": {
"title": "City",
"type": "string"
}
},
"required": [
"city"
],
"title": "get_coordinatesArguments",
"type": "object"
}