Emoji Oracle
live EntertainmentGeneratorAsk the Emoji Oracle a question and receive a cryptic emoji prophecy with vibe rating. Optionally request interpretation of the emoji sequence.
1 tools
0ms auth
free tier 50 calls/day
Tools
emoji_oracle_consult
required: question 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.
Parameters
Name Type Description
question req string Your question for the Emoji Oracle interpret opt boolean If true, the Oracle provides a mystical interpretation emoji_count opt number Number of emojis (1-5, default 3) Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/emoji-oracle/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/emoji-oracle/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"emoji_oracle_consult","arguments":{"question": "Will it work?"}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("emoji_oracle_consult", {"question":"example"}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("ask the emoji oracle a question and receive a cryptic emoji prophecy with vibe rating");