web3-tools-mcp 1.2.3 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -4,8 +4,10 @@ A Model Context Protocol (MCP) server for blockchain interactions using [viem](h
4
4
 
5
5
  ## Features
6
6
 
7
- - Multi-chain support (Ethereum, Base, Arbitrum, Polygon, Optimism, Celo)
7
+ - Multi-chain support (Ethereum, Arbitrum, Avalanche, Base, BNB Chain, Gnosis, Sonic, Optimism, Polygon, zkSync Era, Linea, Unichain)
8
8
  - Smart contract interactions (read functions, ABI retrieval, source code)
9
+ - Contract simulation & gas estimation (simulate transactions, estimate costs)
10
+ - Real-time gas price tracking (legacy & EIP-1559)
9
11
  - ENS resolution (names ↔ addresses, text records, avatars)
10
12
  - Token balances (native & ERC20, batch queries)
11
13
  - Event log queries with Hypersync acceleration
@@ -64,12 +66,18 @@ npx web3-tools-mcp
64
66
 
65
67
  | Network | Chain ID | Hypersync |
66
68
  |---------|----------|-----------|
67
- | Ethereum | 1 | ✅ |
68
- | Base | 8453 | ✅ |
69
+ | Ethereum Mainnet | 1 | ✅ |
69
70
  | Arbitrum | 42161 | ✅ |
70
- | Polygon | 137 | ✅ |
71
+ | Avalanche | 43114 | ✅ |
72
+ | Base | 8453 | ✅ |
73
+ | BNB Chain | 56 | ✅ |
74
+ | Gnosis | 100 | ✅ |
75
+ | Sonic | 146 | ✅ |
71
76
  | Optimism | 10 | ✅ |
72
- | Celo | 42220 | |
77
+ | Polygon | 137 | |
78
+ | zkSync Era | 324 | ✅ |
79
+ | Linea | 59144 | ✅ |
80
+ | Unichain | 130 | ✅ |
73
81
  | Localhost | 31337 | ❌ |
74
82
 
75
83
  ## Available Tools
@@ -88,6 +96,11 @@ npx web3-tools-mcp
88
96
  ### Contract Interaction
89
97
  - `call_contract_function` - Call view/pure functions (supports batch)
90
98
 
99
+ ### Gas & Simulation
100
+ - `simulate_contract` - Simulate contract calls without broadcasting (includes gas estimate)
101
+ - `estimate_gas` - Estimate gas cost for any transaction
102
+ - `get_gas_price` - Get current gas prices (legacy & EIP-1559)
103
+
91
104
  ### ENS
92
105
  - `resolve_ens_name` - ENS name → address
93
106
  - `reverse_resolve_ens` - Address → ENS name