magic_8_ball_ask
Pack: magic-8-ball · Endpoint: https://gateway.pipeworx.io/magic-8-ball/mcp
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.
Example call
Arguments
{
"question": "Will this project be completed on time?"
}
curl
curl -X POST https://gateway.pipeworx.io/magic-8-ball/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"magic_8_ball_ask","arguments":{"question":"Will this project be completed on time?"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('magic_8_ball_ask', {
"question": "Will this project be completed on time?"
});
More examples
{
"question": "Should I invest in this opportunity?",
"cynical": true,
"corporate": true
}
Response shape
Always returns: magic_8_ball_response
| Field | Type | Description |
|---|---|---|
magic_8_ball_response | string | The mystical answer from the Magic 8-Ball |
Full JSON Schema
{
"type": "object",
"properties": {
"magic_8_ball_response": {
"type": "string",
"description": "The mystical answer from the Magic 8-Ball"
}
},
"required": [
"magic_8_ball_response"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"magic-8-ball": {
"url": "https://gateway.pipeworx.io/magic-8-ball/mcp"
}
}
}
See Getting Started for client-specific install steps.