oceanforecast
Pack: met-no · Endpoint: https://gateway.pipeworx.io/met-no/mcp
Ocean forecast — current, wave height, sea temperature.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
lat | number | yes | |
lon | number | yes |
Example call
Arguments
{
"lat": 59.9139,
"lon": 10.7522
}
curl
curl -X POST https://gateway.pipeworx.io/met-no/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"oceanforecast","arguments":{"lat":59.9139,"lon":10.7522}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('oceanforecast', {
"lat": 59.9139,
"lon": 10.7522
});
Response shape
| Field | Type | Description |
|---|---|---|
type | string | Feature type (GeoJSON) |
geometry | object | |
properties | object |
Full JSON Schema
{
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "Feature type (GeoJSON)"
},
"geometry": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"coordinates": {
"type": "array",
"items": {
"type": "number"
}
}
}
},
"properties": {
"type": "object",
"properties": {
"meta": {
"type": "object",
"properties": {
"updated_at": {
"type": "string",
"description": "ISO 8601 timestamp"
},
"units": {
"type": "object",
"properties": {
"sea_surface_temperature": {
"type": "string"
},
"sea_surface_wave_significant_height": {
"type": "string"
},
"sea_surface_wave_from_direction": {
"type": "string"
},
"sea_water_speed": {
"type": "string"
},
"sea_water_from_direction": {
"type": "string"
}
}
}
}
},
"timeseries": {
"type": "array",
"items": {
"type": "object",
"properties": {
"time": {
"type": "string",
"description": "ISO 8601 timestamp"
},
"data": {
"type": "object",
"properties": {
"instant": {
"type": "object",
"properties": {
"details": {
"type": "object",
"properties": {
"sea_surface_temperature": {
"type": "number"
},
"sea_surface_wave_significant_height": {
"type": "number"
},
"sea_surface_wave_from_direction": {
"type": "number"
},
"sea_water_speed": {
"type": "number"
},
"sea_water_from_direction": {
"type": "number"
}
}
}
}
}
}
}
}
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"met-no": {
"url": "https://gateway.pipeworx.io/met-no/mcp"
}
}
}
See Getting Started for client-specific install steps.