current_conditions

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

Get the live CURRENT weather conditions right now for a location — temperature, feels-like, humidity, wind, and conditions. Example: current_conditions({ location: “Tokyo” }).

Parameters

NameTypeRequiredDescription
locationstringyesCity name (e.g. “Tokyo”) or “lat,lon”.
unitsstringnoUnit group: “metric” (default), “us”, or “uk”.
_apiKeystringnoOptional — your own Visual Crossing API key for higher limits; omit to use the shared Pipeworx key.

Example call

Arguments

{
  "location": "Tokyo"
}

curl

curl -X POST https://gateway.pipeworx.io/visualcrossing/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"current_conditions","arguments":{"location":"Tokyo"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "location": "New York, NY",
  "units": "us"
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026