MET Norway
liveWeatherClimateNorwegian Meteorological Institute (api.met.no, behind yr.no) — global forecast, sunrise/sunset, ocean and Nordics specials. Keyless.
5tools
0msauth
free tier50 calls/day
Tools
forecastrequired: lat, lonCompact 10-day forecast.
Parameters
NameTypeDescription
latreqnumber—lonreqnumber—altitudeoptnumber—Try it
Response
nowcastrequired: lat, lon90-min precipitation nowcast (Nordics).
Parameters
NameTypeDescription
latreqnumber—lonreqnumber—Try it
Response
sunriserequired: lat, lonSunrise / sunset / moon.
Parameters
NameTypeDescription
latreqnumber—lonreqnumber—dateoptstring—offsetoptstring—Try it
Response
airqualityrequired: lat, lonAir-quality forecast (Norway).
Parameters
NameTypeDescription
latreqnumber—lonreqnumber—areaclassoptstring—Try it
Response
oceanforecastrequired: lat, lonOcean forecast.
Parameters
NameTypeDescription
latreqnumber—lonreqnumber—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");