tarot-mcp-server
Version:
Model Context Protocol server for Rider-Waite tarot card readings
18 lines (17 loc) • 473 B
TypeScript
import { TarotSpread } from "./types.js";
/**
* Tarot spread definitions
*/
export declare const TAROT_SPREADS: Record<string, TarotSpread>;
/**
* Get all available spreads
*/
export declare function getAllSpreads(): TarotSpread[];
/**
* Get a specific spread by name
*/
export declare function getSpread(name: string): TarotSpread | undefined;
/**
* Validate if a spread type is supported
*/
export declare function isValidSpreadType(spreadType: string): boolean;