Wraps Base mainnet RPC calls into seven read-only tools for wallet inspection and transaction planning. You get balance checks across ETH and ERC-20s, gas estimates, token metadata lookups, allowance verification, ENS resolution, and transaction status queries. No API keys needed since it hits public Base RPC endpoints. Useful when you're building agents that need to check portfolio state, verify approvals before swaps, monitor gas costs, or confirm transaction outcomes on Base. Runs via npx with zero config, though you can point it at custom RPC providers through environment variables if you want rate limit headroom or specific node features.
An MCP server for AI agents to interact with Base chain wallets. Check balances, estimate gas, inspect tokens, verify allowances, and more.
npx -y base-wallet-toolkit-mcp
| Tool | Description |
|---|---|
check_balances | Get ETH + ERC-20 token balances for any wallet |
get_gas_estimate | Estimate gas cost for a transaction on Base |
get_token_info | Get ERC-20 token details (name, symbol, supply, decimals) |
check_allowance | Check token approval/allowance status |
get_base_gas_price | Get current Base gas price and typical tx costs |
resolve_address | Resolve ENS name to address (or reverse lookup) |
get_tx_status | Check transaction status and details by hash |
Add to your MCP client config (Claude Code, Cursor, etc.):
{
"mcpServers": {
"base-wallet-toolkit": {
"command": "npx",
"args": ["-y", "base-wallet-toolkit-mcp"]
}
}
}
No API keys required. All tools are read-only and use public Base RPC.
RPC_URL env varETH_RPC_URL)MIT
RPC_URLBase mainnet RPC URL (defaults to https://mainnet.base.org)