action_check
Perform a check action in Texas Holdem poker games by specifying the player and table IDs using the MCP server interface.
Instructions
do action check
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"
}