MET Norway
live WeatherNorwegian Meteorological Institute (api.met.no, behind yr.no) — global forecast, sunrise/sunset, ocean and Nordics specials. Keyless.
5 tools
0ms auth
free tier 50 calls/day
Tools
forecast
required: lat, lon Compact 10-day forecast.
Parameters
Name Type Description
lat req number — lon req number — altitude opt number — Try it
Response
nowcast
required: lat, lon 90-min precipitation nowcast (Nordics).
Parameters
Name Type Description
lat req number — lon req number — Try it
Response
sunrise
required: lat, lon Sunrise / sunset / moon.
Parameters
Name Type Description
lat req number — lon req number — date opt string — offset opt string — Try it
Response
airquality
required: lat, lon Air-quality forecast (Norway).
Parameters
Name Type Description
lat req number — lon req number — areaclass opt string — Try it
Response
oceanforecast
required: lat, lon Ocean forecast.
Parameters
Name Type Description
lat req number — lon req number — Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/met-no/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/met-no/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"forecast","arguments":{"lat": 37.7749, "lon": -122.4194}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("forecast", {"lat":"example","lon":"example"}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("norwegian meteorological institute (api"); Related packs
Other Pipeworx packs in the same categories (Weather):