bnbchain-mcp

Official
by bnb-chain
MIT License
353
2

get_native_balance

Retrieve the native token balance for a specific address across various networks, including BSC, Ethereum, and others, with the option to specify the desired network or chain ID.

Instructions

Get native token balance for an address

Input Schema

NameRequiredDescriptionDefault
addressYesThe address to check balance for
networkNoNetwork name (e.g. 'bsc', 'opbnb', 'ethereum', 'base', etc.) or chain ID. Supports others main popular networks. Defaults to BSC mainnet.bsc

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "address": { "description": "The address to check balance for", "type": "string" }, "network": { "default": "bsc", "description": "Network name (e.g. 'bsc', 'opbnb', 'ethereum', 'base', etc.) or chain ID. Supports others main popular networks. Defaults to BSC mainnet.", "type": "string" } }, "required": [ "address" ], "type": "object" }
ID: t6zbvd82tr