react
Add or remove reactions (like/dislike) to markets or comments on Manifold Markets using an MCP interface, enabling interactive engagement with platform content.
Instructions
React to a market or comment
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| contentId | Yes | ID of market or comment | |
| contentType | Yes | Type of content to react to | |
| reactionType | No | Type of reaction | |
| remove | No | Optional. 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"
}