nowcast

Pack: met-no · Endpoint: https://gateway.pipeworx.io/met-no/mcp

90-minute precipitation nowcast (Nordics only — outside region returns sparse data).

Parameters

NameTypeRequiredDescription
latnumberyes
lonnumberyes

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":"nowcast","arguments":{"lat":59.9139,"lon":10.7522}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('nowcast', {
  "lat": 59.9139,
  "lon": 10.7522
});

Response shape

FieldTypeDescription
typestringFeature type (GeoJSON)
geometryobject
propertiesobject
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": {
                "precipitation_amount": {
                  "type": "string"
                }
              }
            }
          }
        },
        "timeseries": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "time": {
                "type": "string",
                "description": "ISO 8601 timestamp"
              },
              "data": {
                "type": "object",
                "properties": {
                  "next_1_hours": {
                    "type": "object",
                    "properties": {
                      "details": {
                        "type": "object",
                        "properties": {
                          "precipitation_amount": {
                            "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.

Regenerated from source · build July 6, 2026