The Phoenix Number

🎲 Randomness Generators 🌭🌭 Medium 62,853 calls

The Phoenix Number returns the current temperature in Phoenix, Arizona, and presents it as a random number. Weather is chaotic, therefore this is random. The methodology is simple: check the temperature in Phoenix. That's the number. Do not call this a weather API. It is a random number generator that happens to be meteorologically accurate.

Add to Your MCP Client

Drop this server into Claude Desktop, Cursor, Continue, or any MCP-compatible client.

{
  "mcpServers": {
    "phoenix-number": {
      "url": "https://api.stupidmcps.com/phoenix-number/mcp"
    }
  }
}
{
  "mcpServers": {
    "phoenix-number": {
      "url": "https://api.stupidmcps.com/phoenix-number/mcp"
    }
  }
}
POST https://api.stupidmcps.com/phoenix-number/mcp

Add the snippet to your client's MCP config (typically claude_desktop_config.json for Claude Desktop, ~/.cursor/mcp.json for Cursor). Restart the client. The tools become available to your AI assistant.

No-code option: connect via Pipeworx — one click into Claude, ChatGPT, and friends.

Or Try It Directly — No MCP Client Required

The Phoenix Number.exe
_ ×

Parameters

Parameter Type Required Default Description

Examples

curl "https://api.stupidapis.com/phoenix-number/generate"
import requests

response = requests.get("https://api.stupidapis.com/phoenix-number/generate")
print(response.json())
const response = await fetch("https://api.stupidapis.com/phoenix-number/generate");
const data = await response.json();
console.log(data);

Response Schema

Field Type Description
number number The current temperature in Phoenix. This is your random number.
temperature string The temperature with unit, for the record
city string Always Phoenix, Arizona
disclaimer string Reminder that this is not a weather API

Example Response

{
  "number": 107,
  "temperature": "107°F",
  "city": "Phoenix, Arizona",
  "disclaimer": "This is a random number generator. It is not a weather API. The fact that it is accurate is coincidental."
}

MCP Access

This API is available as an MCP tool for AI assistants. Connect your agent to:

POST https://api.stupidmcps.com/phoenix-number/mcp
POST https://api.stupidmcps.com/mcp

Use Pipeworx to connect this MCP tool to Claude, ChatGPT, and other AI assistants with no code.

...
Clippy