schrodingers_boolean_evaluate

Pack: schrodingers-boolean · Endpoint: https://gateway.pipeworx.io/schrodingers-boolean/mcp

Ask a yes/no question and get a quantum superposition answer (both true and false simultaneously). Supports cat mode for absurdist responses. Returns the answer state and wave function interpretation.

Example call

Arguments

{
  "question": "Will this project be completed on time?"
}

curl

curl -X POST https://gateway.pipeworx.io/schrodingers-boolean/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"schrodingers_boolean_evaluate","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('schrodingers_boolean_evaluate', {
  "question": "Will this project be completed on time?"
});

More examples

{
  "question": "Is the cat alive?",
  "observe": true,
  "cat": true,
  "interpret": true
}

Response shape

Always returns: answer

FieldTypeDescription
questionstringThe question that was submitted
answerbooleanThe quantum superposition answer (true and false simultaneously)
wave_functionstringThe quantum wave function state representation
collapsedbooleanWhether the wave function has been collapsed
cat_statusstringThe status of the cat (alive/dead/both)
interpretationstringPhilosophical interpretation of the answer
Full JSON Schema
{
  "type": "object",
  "properties": {
    "question": {
      "type": "string",
      "description": "The question that was submitted"
    },
    "answer": {
      "type": "boolean",
      "description": "The quantum superposition answer (true and false simultaneously)"
    },
    "wave_function": {
      "type": "string",
      "description": "The quantum wave function state representation"
    },
    "collapsed": {
      "type": "boolean",
      "description": "Whether the wave function has been collapsed"
    },
    "cat_status": {
      "type": "string",
      "description": "The status of the cat (alive/dead/both)"
    },
    "interpretation": {
      "type": "string",
      "description": "Philosophical interpretation of the answer"
    }
  },
  "required": [
    "answer"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "schrodingers-boolean": {
      "url": "https://gateway.pipeworx.io/schrodingers-boolean/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026