action_bet
Place a bet in Texas Holdem poker games on the MCP server by specifying player ID, table ID, and bet amount.
Instructions
do action bet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | ||
player_id | Yes | ||
table_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"amount": {
"type": "number"
},
"player_id": {
"type": "string"
},
"table_id": {
"type": "string"
}
},
"required": [
"player_id",
"table_id",
"amount"
],
"type": "object"
}