list_stations

Pack: tides · Endpoint: https://gateway.pipeworx.io/tides/mcp

List all NOAA tide prediction stations with their IDs and names.

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/tides/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_stations","arguments":{}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('list_stations', {});

Response shape

Always returns: count, stations

FieldTypeDescription
countintegerTotal number of tide prediction stations
stationsarrayList of NOAA tide prediction stations
Full JSON Schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "Total number of tide prediction stations"
    },
    "stations": {
      "type": "array",
      "description": "List of NOAA tide prediction stations",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "Station ID"
          },
          "name": {
            "type": "string",
            "description": "Station name"
          },
          "state": {
            "type": [
              "string",
              "null"
            ],
            "description": "State where station is located"
          },
          "lat": {
            "type": [
              "number",
              "null"
            ],
            "description": "Latitude coordinate"
          },
          "lng": {
            "type": [
              "number",
              "null"
            ],
            "description": "Longitude coordinate"
          }
        },
        "required": [
          "id",
          "name"
        ]
      }
    }
  },
  "required": [
    "count",
    "stations"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "tides": {
      "url": "https://gateway.pipeworx.io/tides/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026