metar
Pack: aviation-weather · Endpoint: https://gateway.pipeworx.io/aviation-weather/mcp
METAR observations. ids = comma-sep ICAO codes (KSFO,EGLL,LFPG).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ids | string | yes | Comma-separated ICAO airport codes |
hours_before | number | no | How far back to look, 1-24 (default 1) |
format | string | no | json (default) | raw | xml | html |
Example call
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":"metar","arguments":{}}}'
Response shape
Full JSON Schema
{
"oneOf": [
{
"type": "object",
"description": "METAR observations in JSON format"
},
{
"type": "object",
"properties": {
"format": {
"type": "string",
"description": "Response format (raw, xml, or html)"
},
"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.