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/
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
area | string | yes | Place 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.