E
Etherscan Tools
Integrates with Etherscan's API to provide Ethereum blockchain data tools for balance checking, transaction tracking, and smart contract interactions.
Share:
About
Integrates with Etherscan's API to provide Ethereum blockchain data tools for balance checking, transaction tracking, and smart contract interactions.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Etherscan Tools.
- What is the primary function of the Etherscan Tools MCP?
- This MCP integrates with the Etherscan API to provide tools for accessing Ethereum blockchain data. It enables functionalities such as checking account balances, tracking transactions, and interacting with smart contracts.
- How can I deploy the Etherscan Tools MCP with a client?
- The Etherscan Tools MCP uses the 'stdio' transport protocol. You would typically run the server directly on your system, and your MCP client would communicate with it via standard input/output streams.
- Does the Etherscan Tools MCP require any API keys or authentication?
- No, the Etherscan Tools MCP is configured with 'none' as its authentication type. It does not require API keys or other credentials for its operation, as implied by the directory listing.
- What specific Etherscan functionalities are available through this MCP?
- The MCP provides tools for Ethereum blockchain data tasks including balance checking, transaction monitoring, and smart contract interactions. The exact set of exposed tools would be defined by the server implementation itself.
- Is there a cost associated with using the Etherscan Tools MCP?
- The MCP itself is open-source, as indicated by its GitHub repository. However, usage of the underlying Etherscan API may be subject to Etherscan's own rate limits or service tiers, depending on your usage.
Install Etherscan Tools
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"etherscan-tools": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-etherscan-tools"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"etherscan-tools": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-etherscan-tools"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"etherscan-tools": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-etherscan-tools"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.