tarot_draw_pull
Pack: tarot-draw · Endpoint: https://gateway.pipeworx.io/tarot-draw/mcp
Draw a tarot card from the 78-card deck. Interprets it for your situation. Accuracy not guaranteed. Refunds not available.
Example call
Arguments
{
"question": "What does my future hold?",
"spread": "past_present_future"
}
curl
curl -X POST https://gateway.pipeworx.io/tarot-draw/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"tarot_draw_pull","arguments":{"question":"What does my future hold?","spread":"past_present_future"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tarot_draw_pull', {
"question": "What does my future hold?",
"spread": "past_present_future"
});
More examples
{
"spread": "single"
}
Response shape
| Field | Type | Description |
|---|---|---|
question | string | |
card | object | The name of the drawn tarot card |
orientation | string | |
interpretation | string | |
warning | string | null | |
advice | string | |
generated_at | string |
Full JSON Schema
{
"type": "object",
"properties": {
"question": {
"type": "string"
},
"card": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"arcana": {
"type": "string"
},
"number": {
"type": "number"
},
"keywords": {
"type": "array",
"items": {
"type": "string"
}
}
},
"description": "The name of the drawn tarot card"
},
"orientation": {
"type": "string"
},
"interpretation": {
"type": "string"
},
"warning": {
"type": [
"string",
"null"
]
},
"advice": {
"type": "string"
},
"generated_at": {
"type": "string"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"tarot-draw": {
"url": "https://gateway.pipeworx.io/tarot-draw/mcp"
}
}
}
See Getting Started for client-specific install steps.