get_sea_level_trends
Retrieve sea level trends and error margins for a specific station in JSON, XML, or CSV format using the LocalTides MCP Server tool, designed for analyzing water level data efficiently.
Instructions
Get sea level trends and error margins for a station
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| affil | No | Station affiliation (Global or US) | |
| format | No | Output format (json, xml, csv) | |
| station | Yes | Station ID | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "description": "Get sea level trends for a station",
  "properties": {
    "affil": {
      "description": "Station affiliation (Global or US)",
      "enum": [
        "Global",
        "US"
      ],
      "type": "string"
    },
    "format": {
      "description": "Output format (json, xml, csv)",
      "enum": [
        "json",
        "xml",
        "csv"
      ],
      "type": "string"
    },
    "station": {
      "description": "Station ID",
      "minLength": 1,
      "type": "string"
    }
  },
  "required": [
    "station"
  ],
  "type": "object"
}