get-mon-balance
Retrieve the MON token balance for a specified address on the Monad testnet using the Model Context Protocol server. Check token holdings with a simple address input.
Instructions
Get MON balance for an address on Monad testnet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Monad testnet address to check balance for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "Monad testnet address to check balance for",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}