Magic 8-Ball
live HumorAsk the Magic 8-Ball a yes-or-no question with optional cynical or corporate mode
1 tools
0ms auth
free tier 50 calls/day
Tools
magic_8_ball_ask
required: question Ask the Magic 8-Ball a yes-or-no question. Supports cynical mode (weighted toward negative) and corporate mode (all answers in business speak).
Parameters
Name Type Description
question req string Your yes-or-no question for the Magic 8-Ball cynical opt boolean Weighted toward negative responses corporate opt boolean All answers in business speak Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/magic-8-ball/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/magic-8-ball/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"magic_8_ball_ask","arguments":{"question": "Will it work?"}}}'