undelegate
Remove staked tokens from a validator on the MantraChain network using the MantraChain MCP Server. Specify the validator address, token amount, and network name to execute the undelegation process.
Instructions
Undelegate/Unstake tokens from a validator
Input Schema
Name | Required | Description | Default |
---|---|---|---|
amount | Yes | Amount of tokens to undelegate | |
denom | No | Optional denomination of the tokens, default is network's default denom | |
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 undelegate from |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"amount": {
"description": "Amount of tokens to undelegate",
"type": "string"
},
"denom": {
"description": "Optional denomination of the tokens, default is network's default denom",
"type": "string"
},
"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 undelegate from",
"type": "string"
}
},
"required": [
"operatorAddress",
"amount",
"networkName"
],
"type": "object"
}