get-mon-balance
Check MON token balance for a specific address on the Monad testnet using the Monad MCP server. Ideal for verifying token holdings and interacting with the Monad blockchain.
Instructions
查询 Monad 测试网地址的 MON 代币余额
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | 需要查询的 Monad 测试网地址 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "需要查询的 Monad 测试网地址",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}