UNPKG

@kaminaduck/scryfall-mcp-server

Version:

A Model Context Protocol (MCP) server that provides access to the Scryfall API for Magic: The Gathering card data

16 lines 554 B
/** * Card-related MCP resources for the Scryfall server. */ /** * Get detailed information about a specific Magic: The Gathering card by ID. */ export declare function cardById(cardId: string): Promise<[string, string]>; /** * Get detailed information about a specific Magic: The Gathering card by name. */ export declare function cardByName(cardName: string): Promise<[string, string]>; /** * Get a random Magic: The Gathering card. */ export declare function randomCard(): Promise<[string, string]>; //# sourceMappingURL=cardResources.d.ts.map