emoji_oracle_consult
Pack: emoji-oracle · Endpoint: https://gateway.pipeworx.io/emoji-oracle/mcp
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
Always returns: emojis, vibe_rating
| Field | Type | Description |
|---|---|---|
emojis | string | Cryptic emoji sequence prophecy from the Oracle |
vibe_rating | number | Vibe rating on a scale of 1-10 |
interpretation | string | Mystical text interpretation of the emoji sequence (if interpret=true) |
Full JSON Schema
{
"type": "object",
"properties": {
"emojis": {
"type": "string",
"description": "Cryptic emoji sequence prophecy from the Oracle"
},
"vibe_rating": {
"type": "number",
"description": "Vibe rating on a scale of 1-10"
},
"interpretation": {
"type": "string",
"description": "Mystical text interpretation of the emoji sequence (if interpret=true)"
}
},
"required": [
"emojis",
"vibe_rating"
]
}
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.