Magic 8-Ball

live EntertainmentGenerator

Ask a yes-or-no question and get a mystical answer.

1 tools
0ms auth
free tier 50 calls/day

Tools

magic_8_ball_ask required: question

Ask a yes-or-no question and get a mystical answer. Returns response text. Supports cynical mode for negative-weighted answers or corporate mode for business jargon. Use when you need a random decision, tie-breaker, or humorous perspective.

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

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?"}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("magic_8_ball_ask", {"question":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("ask a yes-or-no question and get a mystical answer");