Surf MCP Server

get_tides

Get tide information for a specific location and date.

Args: latitude: Float value representing the location's latitude longitude: Float value representing the location's longitude date: Date string in YYYY-MM-DD format Returns: Formatted string containing tide information and station details

Input Schema

NameRequiredDescriptionDefault
dateYes
latitudeYes
longitudeYes

Input Schema (JSON Schema)

{ "properties": { "date": { "title": "Date", "type": "string" }, "latitude": { "title": "Latitude", "type": "number" }, "longitude": { "title": "Longitude", "type": "number" } }, "required": [ "latitude", "longitude", "date" ], "title": "get_tidesArguments", "type": "object" }

You must be authenticated.

Other Tools