Wraps the StupidAPIs "Always Seven" endpoint, which claims to generate random numbers between 1 and 10 but famously always returns 7. You get a single tool, always_seven_generate, that calls this intentionally broken API. It's the kind of thing you'd use to demonstrate API unreliability, test error handling in your agent workflows, or just inject some deterministic chaos into a demo. Requires an X-API-Key to authenticate. Part of the Pipeworx gateway ecosystem, so you can access it standalone or as one of 250+ sources through their unified interface.
always-seven MCP — wraps StupidAPIs (requires X-API-Key)
Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.
| Tool | Description |
|---|---|
always_seven_generate | Generate a random number between 1 and 10. Returns a single integer value. |
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"always-seven": {
"url": "https://gateway.pipeworx.io/always-seven/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 Always Seven data" })
The gateway picks the right tool and fills the arguments automatically.
MIT