ipma_sea_forecast

Pack: ipma-pt · Endpoint: https://gateway.pipeworx.io/ipma-pt/mcp

Sea state forecast for the Portuguese coast from IPMA oceanography — significant wave height (m), wave period (s), wave direction, and sea surface temperature (°C) for 12 coastal zones on the mainland, Madeira, and Azores. Good for surf, sailing, and beach conditions. Example: ipma_sea_forecast({ city: “Sagres” })

Parameters

NameTypeRequiredDescription
citystringnoOptional coastal zone filter, e.g. “Sagres”, “Lisboa”, “Porto”, “Funchal”, “Ponta Delgada”. Omit for all 12 zones.
daynumbernoForecast day: 0 = today (default), 1 = tomorrow, 2 = day after.

Example call

Arguments

{
  "city": "Sagres",
  "day": 0
}

curl

curl -X POST https://gateway.pipeworx.io/ipma-pt/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ipma_sea_forecast","arguments":{"city":"Sagres","day":0}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('ipma_sea_forecast', {
  "city": "Sagres",
  "day": 0
});

More examples

{
  "city": "Funchal"
}

Connect

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

{
  "mcpServers": {
    "ipma-pt": {
      "url": "https://gateway.pipeworx.io/ipma-pt/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 30, 2026