conspiracy_theory_generate

Pack: conspiracy-theory · Endpoint: https://gateway.pipeworx.io/conspiracy-theory/mcp

Generate conspiracy theories by connecting unrelated concepts, investigating events with multiple theories, or escalating observations into narratives. Returns theory text with supporting connections. Modes: ‘connect’ (link two things), ‘investigate’ (explore event), ‘escalate’ (build narrative from observation).

Example call

Arguments

{
  "mode": "connect",
  "thing_one": "pharmaceutical companies",
  "thing_two": "social media algorithms",
  "depth": "deep",
  "confidence": "medium"
}

curl

curl -X POST https://gateway.pipeworx.io/conspiracy-theory/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"conspiracy_theory_generate","arguments":{"mode":"connect","thing_one":"pharmaceutical companies","thing_two":"social media algorithms","depth":"deep","confidence":"medium"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('conspiracy_theory_generate', {
  "mode": "connect",
  "thing_one": "pharmaceutical companies",
  "thing_two": "social media algorithms",
  "depth": "deep",
  "confidence": "medium"
});

More examples

{
  "mode": "investigate",
  "event": "sudden spike in UFO sightings",
  "depth": "surface",
  "confidence": "low"
}
{
  "mode": "complete",
  "prompt": "I have noticed that every major historical event happens on a date divisible by 7",
  "depth": "full_tinfoil",
  "confidence": "suspiciously_high"
}

Response shape

FieldTypeDescription
theorystringGenerated conspiracy theory text
connectionsarraySupporting connections or related concepts
confidencestringConfidence level of the theory
depthstringDepth of investigation applied
Full JSON Schema
{
  "type": "object",
  "properties": {
    "theory": {
      "type": "string",
      "description": "Generated conspiracy theory text"
    },
    "connections": {
      "type": "array",
      "description": "Supporting connections or related concepts",
      "items": {
        "type": "string"
      }
    },
    "confidence": {
      "type": "string",
      "description": "Confidence level of the theory"
    },
    "depth": {
      "type": "string",
      "description": "Depth of investigation applied"
    }
  }
}

Connect

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

{
  "mcpServers": {
    "conspiracy-theory": {
      "url": "https://gateway.pipeworx.io/conspiracy-theory/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026