get_stations
Retrieve a list of tide and current stations by specifying station type, output format, and unit preferences using the LocalTides MCP Server.
Instructions
Get list of stations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format (json, xml) | |
type | No | Station type (waterlevels, currents, etc.) | |
units | No | Units to use ("english" or "metric") |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"format": {
"description": "Output format (json, xml)",
"enum": [
"json",
"xml"
],
"type": "string"
},
"type": {
"description": "Station type (waterlevels, currents, etc.)",
"type": "string"
},
"units": {
"description": "Units to use (\"english\" or \"metric\")",
"enum": [
"english",
"metric"
],
"type": "string"
}
},
"type": "object"
}