Manifold Markets MCP Server

sell_shares

Sell shares in a market

Input Schema

NameRequiredDescriptionDefault
marketIdYesMarket ID
outcomeNoWhich type of shares to sell (defaults to what you have)
sharesNoHow many shares to sell (defaults to all)

Input Schema (JSON Schema)

{ "properties": { "marketId": { "description": "Market ID", "type": "string" }, "outcome": { "description": "Which type of shares to sell (defaults to what you have)", "enum": [ "YES", "NO" ], "type": "string" }, "shares": { "description": "How many shares to sell (defaults to all)", "type": "number" } }, "required": [ "marketId" ], "type": "object" }