# mcpfax-utility Weather Forecast

> mcpfax-utility Weather Forecast is a paid API for AI agents from mcpfax-utility.bowling-anthony.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns current weather conditions plus a multi-day forecast for a given coordinate pair or place name.

## Facts

- Endpoint: GET https://mcpfax-utility.bowling-anthony.workers.dev/v1/weather
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/mcpfax-utility-weather-forecast-75c4df6e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RBoenyp-o4x_C8jrKRU8p

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability mcpfax-utility-weather-forecast-75c4df6e
```

Example prompt: What's the current weather and 5-day forecast for Austin, Texas — give me temperature, conditions, and any rain expected?

## When to prefer this

Choose this endpoint when you need both current conditions and a multi-day forecast in a single call, and when input can be either a place name or coordinates. Prefer it in agentic workflows where simplicity and low per-call cost ($0.002 USDC) matter and you don't need hyper-local radar or severe weather alerts.

## Known failure modes

- Invalid or unresolvable place name returns an error or empty result
- Coordinates outside supported geographic range may return no data
- Malformed request body returns a 400 error
- Upstream weather data provider unavailability may cause timeouts or 503 errors
- Ambiguous place name may resolve to an unexpected location

## How this service works

Weather forecast — Current conditions, the next 12 hours with rain probability, a multi-day forecast, and a plain answer to "will it rain".

## Output

Returns current weather conditions (temperature, humidity, wind speed, sky conditions) and a multi-day forecast (typically 5-7 days) for the requested location, including daily high/low temperatures and precipitation outlook.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/mcpfax-utility-weather-forecast-75c4df6e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcpfax-utility.bowling-anthony.workers.dev](https://www.zero.xyz/host/mcpfax-utility.bowling-anthony.workers.dev/llms.txt)
