emoji_oracle_consult

Pack: emoji-oracle · Endpoint: https://gateway.pipeworx.io/emoji-oracle/mcp

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

Ask the Emoji Oracle a question and receive a cryptic emoji prophecy with vibe rating. Optionally request interpretation of the emoji sequence. Returns emoji sequence, vibe rating (1-10), and optional text explanation.

Example call

Arguments

{
  "question": "Will my next project be successful?"
}

curl

curl -X POST https://gateway.pipeworx.io/emoji-oracle/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"emoji_oracle_consult","arguments":{"question":"Will my next project be successful?"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('emoji_oracle_consult', {
  "question": "Will my next project be successful?"
});

More examples

{
  "question": "What does the future hold for my career?",
  "interpret": true,
  "emoji_count": 4
}

Response shape

FieldTypeDescription
questionstring
prophecystring
vibe_checkstring
interpretationstringMystical text interpretation of the emoji sequence (if interpret=true)
Full JSON Schema
{
  "type": "object",
  "properties": {
    "question": {
      "type": "string"
    },
    "prophecy": {
      "type": "string"
    },
    "vibe_check": {
      "type": "string"
    },
    "interpretation": {
      "type": "string",
      "description": "Mystical text interpretation of the emoji sequence (if interpret=true)"
    }
  }
}

Connect

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

{
  "mcpServers": {
    "emoji-oracle": {
      "url": "https://gateway.pipeworx.io/emoji-oracle/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 22, 2026