taf

Pack: aviation-weather · Endpoint: https://gateway.pipeworx.io/aviation-weather/mcp

Terminal Aerodrome Forecast (TAF) for one or more ICAO airport codes (e.g. KSFO,EGLL); returns forecast periods covering wind, visibility, and cloud ceilings for the next 24–30 h.

Parameters

NameTypeRequiredDescription
idsstringyesComma-separated ICAO codes
hours_beforenumberno1-24 (default 12)
formatstringnojson (default) | raw

Example call

Arguments

{
  "ids": "KSFO,EGLL"
}

curl

curl -X POST https://gateway.pipeworx.io/aviation-weather/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"taf","arguments":{"ids":"KSFO,EGLL"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('taf', {
  "ids": "KSFO,EGLL"
});

More examples

{
  "ids": "KDFW",
  "hours_before": 24,
  "format": "raw"
}

Response shape

Full JSON Schema
{
  "oneOf": [
    {
      "type": "object",
      "description": "Terminal Aerodrome Forecasts in JSON format"
    },
    {
      "type": "object",
      "properties": {
        "format": {
          "type": "string",
          "description": "Response format (raw)"
        },
        "body": {
          "type": "string",
          "description": "Raw response body"
        }
      },
      "required": [
        "format",
        "body"
      ]
    }
  ]
}

Connect

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

{
  "mcpServers": {
    "aviation-weather": {
      "url": "https://gateway.pipeworx.io/aviation-weather/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026