cancel_bet
Cancel a specific limit order bet on the Manifold Markets MCP Server by providing the bet ID, allowing users to manage active bets efficiently.
Instructions
Cancel a limit order bet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
betId | Yes | Bet ID to cancel |
Input Schema (JSON Schema)
{
"properties": {
"betId": {
"description": "Bet ID to cancel",
"type": "string"
}
},
"required": [
"betId"
],
"type": "object"
}