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

FieldTypeDescription
cardstringThe name of the drawn tarot card
meaningstringInterpretation of the card for the given question
suitstringThe suit of the card (Major Arcana, Cups, Wands, Swords, Pentacles)
numberintegerThe number or position of the card in its suit
Full JSON Schema
{
  "type": "object",
  "properties": {
    "card": {
      "type": "string",
      "description": "The name of the drawn tarot card"
    },
    "meaning": {
      "type": "string",
      "description": "Interpretation of the card for the given question"
    },
    "suit": {
      "type": "string",
      "description": "The suit of the card (Major Arcana, Cups, Wands, Swords, Pentacles)"
    },
    "number": {
      "type": "integer",
      "description": "The number or position of the card in its suit"
    }
  }
}

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.

Regenerated from source · build May 9, 2026