MCP Rand

draw_cards

Draw cards from a standard deck of playing cards

Input Schema

NameRequiredDescriptionDefault
countYesNumber of cards to draw
deckStateNoOptional base64 encoded string representing the current deck state

Input Schema (JSON Schema)

{ "properties": { "count": { "description": "Number of cards to draw", "type": "number" }, "deckState": { "description": "Optional base64 encoded string representing the current deck state", "type": "string" } }, "required": [ "count" ], "type": "object" }