claim-incentives
Use the MCP server tool to claim incentive rewards from locked tokens on the Osmosis blockchain by providing a mnemonic phrase. Optionally specify lock IDs, gas, and memo.
Instructions
Claim available incentive rewards from locked tokens
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gas | No | Gas limit (default: auto-estimate) | |
gasPrice | No | Gas price (default: 0.025uosmo) | |
lockIds | No | Specific lock IDs to claim from (optional - claims all if not specified) | |
memo | No | Transaction memo | |
mnemonic | Yes | BIP-39 mnemonic phrase for signing the transaction |
Input Schema (JSON Schema)
{
"properties": {
"gas": {
"description": "Gas limit (default: auto-estimate)",
"type": "string"
},
"gasPrice": {
"description": "Gas price (default: 0.025uosmo)",
"type": "string"
},
"lockIds": {
"description": "Specific lock IDs to claim from (optional - claims all if not specified)",
"items": {
"type": "string"
},
"type": "array"
},
"memo": {
"description": "Transaction memo",
"type": "string"
},
"mnemonic": {
"description": "BIP-39 mnemonic phrase for signing the transaction",
"type": "string"
}
},
"required": [
"mnemonic"
],
"type": "object"
}