magic_8_ball_ask

Pack: magic-8-ball · Endpoint: https://gateway.pipeworx.io/magic-8-ball/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/magic_8_ball_ask for the schema, then POST the same URL with its arguments for the data.

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

FieldTypeDescription
questionstring
answerstring
confidencestring
shake_countnumber
Full JSON Schema
{
  "type": "object",
  "properties": {
    "question": {
      "type": "string"
    },
    "answer": {
      "type": "string"
    },
    "confidence": {
      "type": "string"
    },
    "shake_count": {
      "type": "number"
    }
  }
}

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.

Regenerated from source · build September 22, 2026