The MCP Etherscan Server provides Ethereum blockchain data tools through Etherscan's API. It offers functionalities for checking ETH balances, viewing transaction history, tracking ERC20 transfers, fetching contract ABIs, monitoring gas prices, and resolving ENS names - all within an MCP-compatible interface.
Clone the repository:
git clone [your-repo-url]
cd mcp-etherscan-server
Install dependencies:
npm install
Create a .env
file in the root directory:
ETHERSCAN_API_KEY=your_api_key_here
Build the project:
npm run build
Start the server with:
npm start
The server operates via stdio, making it compatible with MCP clients such as Claude Desktop.
Retrieves the ETH balance for any Ethereum address.
Displays recent transactions with detailed information.
Tracks ERC20 token transfers with token details.
Fetches smart contract ABIs for development.
Monitors current gas prices.
Resolves Ethereum addresses to ENS names.
To add this server to Claude Desktop:
Start the server using npm start
In Claude Desktop:
{
"name": "Etherscan Tools",
"transport": "stdio",
"command": "node /path/to/mcp-etherscan-server/build/index.js"
}
The Etherscan tools will now be available in your Claude conversations
You can use natural language commands in Claude, such as:
Check the balance of 0x742d35Cc6634C0532925a3b844Bc454e4438f44e
Or:
Show me recent transactions for vitalik.eth
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "etherscan-tools" '{"command":"node","args":["/path/to/mcp-etherscan-server/build/index.js"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"etherscan-tools": {
"command": "node",
"args": [
"/path/to/mcp-etherscan-server/build/index.js"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"etherscan-tools": {
"command": "node",
"args": [
"/path/to/mcp-etherscan-server/build/index.js"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect