jma_forecast

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

Weather forecast for a Japanese region from the Japan Meteorological Agency (JMA), covering a 3-day short-term outlook (weather, precipitation probability, temperature per sub-area) and a 7-day weekly outlook (weather, precipitation probability, reliability, min/max temperature with confidence range). Sourced from www.jma.go.jp/bosai/forecast/data/forecast/.json. Accepts a place name in English or Japanese (“Tokyo”, “Sapporo”, “大阪”) or a JMA office code directly — resolved the same way as jma_resolve_area. Weather text is native Japanese; an English gloss is included for JMA’s fixed weatherCode set (weatherEn), derived from a static translation table, not machine-translated on the fly.

Parameters

NameTypeRequiredDescription
areastringyesPlace name or JMA area/office code, e.g. “Tokyo”, “Fukuoka”, “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_forecast","arguments":{"area":"Tokyo"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "area": "130000"
}

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