Manifold Markets MCP Server

send_mana

Send mana to other users

Input Schema

NameRequiredDescriptionDefault
amountYesAmount of mana to send (min 10)
messageNoOptional message to include
toIdsYesArray of user IDs to send mana to

Input Schema (JSON Schema)

{ "properties": { "amount": { "description": "Amount of mana to send (min 10)", "type": "number" }, "message": { "description": "Optional message to include", "type": "string" }, "toIds": { "description": "Array of user IDs to send mana to", "items": { "type": "string" }, "type": "array" } }, "required": [ "toIds", "amount" ], "type": "object" }