get-available-rewards
Query and retrieve all available rewards for a specific address on the MantraChain blockchain using the MCP server. Requires the network name for accurate results.
Instructions
Get all available rewards for an address
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | No | Address to query for available rewards | |
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 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "Address to query for available rewards",
"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"
}
},
"required": [
"networkName"
],
"type": "object"
}