LocalTides MCP Server

MIT License
1

get_stations

Retrieve a list of stations with water level, currents, or related data in JSON or XML format using specified units (metric or english) via the LocalTides MCP Server.

Instructions

Get list of stations

Input Schema

NameRequiredDescriptionDefault
formatNoOutput format (json, xml)
typeNoStation type (waterlevels, currents, etc.)
unitsNoUnits 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" }
ID: xv9thnwdng