MCP Rand
by turlockmike
draw_cards
Draw cards from a standard deck of playing cards
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | Yes | Number of cards to draw | |
deckState | No | Optional 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"
}