action_fold
Fold a player's hand in a Texas Holdem poker game using the MCP server API. Specify the player ID and table ID to execute the fold action.
Instructions
do action fold
Input Schema
Name | Required | Description | Default |
---|---|---|---|
player_id | Yes | ||
table_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"player_id": {
"type": "string"
},
"table_id": {
"type": "string"
}
},
"required": [
"player_id",
"table_id"
],
"type": "object"
}