claim-rewards
Claim validator rewards on MantraChain using the MCP Server. Enter the validator's operator address and network name, with an optional memo, to process the transaction.
Instructions
Claim rewards for a specific validator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memo | No | Optional memo for the transaction | |
networkName | Yes | Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments | |
operatorAddress | Yes | Address of the validator to claim rewards from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"memo": {
"description": "Optional memo for the transaction",
"type": "string"
},
"networkName": {
"description": "Name of the network to use - must first check what networks are available through the mantrachain-mcp server by accessing the networks resource `networks://all` before you pass this arguments",
"type": "string"
},
"operatorAddress": {
"description": "Address of the validator to claim rewards from",
"type": "string"
}
},
"required": [
"operatorAddress",
"networkName"
],
"type": "object"
}