This is a lightweight wrapper around StupidAPIs' random number generation endpoint, exposing a single tool that returns numeric values on demand. You'd reach for it when testing workflows, generating placeholder data, or needing unpredictable numbers in your agent loops without writing your own randomization logic. It requires an X-API-Key for authentication and runs through the Pipeworx gateway, which offers streamable HTTP transport and a plain English query interface via ask_pipeworx if you don't want to call the generate tool directly. Part of a larger gateway system that connects to 250+ data sources, though this particular server does one simple thing: give you a random number when you ask for it.
phoenix-number MCP — wraps StupidAPIs (requires X-API-Key)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
phoenix_number_generate | Generate a random number for testing or as a placeholder value. Returns a single numeric value. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"phoenix-number": {
"url": "https://gateway.pipeworx.io/phoenix-number/mcp"
}
}
}
Or connect to the full Pipeworx gateway for access to all 673+ data sources:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Instead of calling tools directly, you can ask questions in plain English:
ask_pipeworx({ question: "your question about Phoenix Number data" })
The gateway picks the right tool and fills the arguments automatically.
MIT