Place a bet on a Drift BET prediction market via your configured Drift Gateway. Long = betting YES, short = betting NO. Price is the implied probability (0.0–1.0). Requires DRIFT_GATEWAY_URL to be set and a funded Drift account.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | required | Market symbol (e.g. 'NBAFINALS25-OKC-BET' or 'NBAFINALS25-OKC') |
| direction | string | required | long = bet YES (event happens), short = bet NO (event does not happen) |
| amountUsdc | string | required | Bet size in USDC (e.g. 50 for $50) |
| limitPrice | string | required | Limit price as implied probability 0.0–1.0 (e.g. 0.75 for 75% probability) |
| orderType | string | optional | Order type: limit (recommended) or market |
// MCP tool call
{
"name": "drift_place_bet",
"arguments": {
"symbol": "",
"direction": "",
"amountUsdc": "",
"limitPrice": "",
"orderType": ""
}
}
// Add to your MCP config — this tool is immediately available
{
"mcpServers": {
"toolbooth": { "url": "https://toolbooth.io/mcp" }
}
}