Manifold Markets MCP Server

react

React to a market or comment

Input Schema

NameRequiredDescriptionDefault
contentIdYesID of market or comment
contentTypeYesType of content to react to
reactionTypeNoType of reaction
removeNoOptional. True to remove reaction

Input Schema (JSON Schema)

{ "properties": { "contentId": { "description": "ID of market or comment", "type": "string" }, "contentType": { "description": "Type of content to react to", "enum": [ "comment", "contract" ], "type": "string" }, "reactionType": { "description": "Type of reaction", "enum": [ "like", "dislike" ], "type": "string" }, "remove": { "description": "Optional. True to remove reaction", "type": "boolean" } }, "required": [ "contentId", "contentType" ], "type": "object" }