current

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

Get current/real-time weather for a location, including temperature, condition, humidity, wind, UV, and air quality (AQI). Location can be a city name, “lat,lon”, zip code, or IATA airport code. Example: current({ q: “London”, aqi: true }).

Parameters

NameTypeRequiredDescription
qstringyes
aqibooleannoInclude air quality (AQI) data. Default true.

Example call

Arguments

{
  "q": "London",
  "aqi": true
}

curl

curl -X POST https://gateway.pipeworx.io/weatherapi/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"current","arguments":{"q":"London","aqi":true}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('current', {
  "q": "London",
  "aqi": true
});

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026