jma_warnings

Pack: jma · Endpoint: https://gateway.pipeworx.io/jma/mcp

Current weather warnings and advisories (警報・注意報) for a Japanese region, from the Japan Meteorological Agency (JMA). Returns the headline bulletin plus per-area status (issued / continuing / lifted / no warnings in effect) for every warning/advisory category JMA tracks (heavy rain, storm, flood, wave, storm surge, dense fog, thunderstorm, avalanche, frost, etc.), at both the sub-prefecture and municipality level. Sourced from www.jma.go.jp/bosai/warning/data/warning/.json. Accepts a place name (English or Japanese) or a JMA office code, resolved the same way as jma_resolve_area. Category and status names are native Japanese with an English gloss from JMA’s fixed warning-code table.

Parameters

NameTypeRequiredDescription
areastringyesPlace name or JMA area/office code, e.g. “Osaka”, “東京”, “130000”.

Example call

Arguments

{
  "area": "Tokyo"
}

curl

curl -X POST https://gateway.pipeworx.io/jma/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"jma_warnings","arguments":{"area":"Tokyo"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('jma_warnings', {
  "area": "Tokyo"
});

Connect

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

{
  "mcpServers": {
    "jma": {
      "url": "https://gateway.pipeworx.io/jma/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 13, 2026