Manifold Markets MCP Server

place_bet

Place a bet on a market

Input Schema

NameRequiredDescriptionDefault
amountYesAmount to bet in mana
limitProbNoOptional limit order probability (0.01-0.99)
marketIdYesMarket ID
outcomeYes

Input Schema (JSON Schema)

{ "properties": { "amount": { "description": "Amount to bet in mana", "type": "number" }, "limitProb": { "description": "Optional limit order probability (0.01-0.99)", "type": "number" }, "marketId": { "description": "Market ID", "type": "string" }, "outcome": { "enum": [ "YES", "NO" ], "type": "string" } }, "required": [ "marketId", "amount", "outcome" ], "type": "object" }