ENS DAO Operations MCP server

Integrates with local Ethereum nodes to simplify ENS DAO operations like domain management and governance participation.
Back to servers
Setup instructions
Provider
5ajaki
Release date
Dec 25, 2024
Language
TypeScript
Stats
1 star

Veri5ight is a Model Context Protocol (MCP) server that creates a direct interface between Claude and Ethereum nodes. It allows Claude to access real-time token balances, contract information, and other blockchain data through your own Ethereum node without rate limits or third-party APIs.

Installation

To get Veri5ight up and running:

# Clone the repository
git clone https://github.com/5ajaki/veri5ight.git

# Install dependencies
npm install

# Build the project
npm run build

Configuration

Setting up the Environment

  1. Create an environment file:
cp .env.example .env
  1. Edit the .env file to add your Ethereum node URL:
ETH_NODE_URL="http://localhost:8545"  # Replace with your actual node URL

Configuring Claude Desktop

Add Veri5ight to your Claude Desktop configuration:

{
  "mcpServers": {
    "veri5ight": {
      "command": "node",
      "args": ["/absolute/path/to/veri5ight/dist/index.js"]
    }
  }
}

Important: The path in the configuration must point to the compiled index.js file in your local dist directory, which is created when you run npm run build.

Launch Options

Veri5ight can launch automatically with Claude Desktop, or you can run it manually:

node dist/index.js

Available Tools

Checking Token Balances

Use the ethereum_getTokenBalance tool to retrieve ERC20 token balances.

Example query:

Claude, what's vitalik.eth's UNI balance?

Viewing Token Delegations

The ethereum_getTokenDelegation tool allows you to check delegation information for governance tokens.

Example query:

Claude, who has nick.eth delegated their tokens to?

Getting Contract Information

Retrieve detailed information about any smart contract with ethereum_getContractInfo.

Example query:

Claude, what can you tell me about this contract: nick.eth

Viewing Recent Transactions

Check an address's recent transactions with ethereum_getRecentTransactions, which scans the most recent 10 blocks.

Example query:

Claude, show me any recent transactions for vitalik.eth

By default, this returns up to 3 transactions if found within the recent blocks.

Troubleshooting

If you encounter issues, check Claude's logs:

tail -n 20 -f ~/Library/Logs/Claude/mcp*.log

Benefits of Direct Node Access

  • No Rate Limits: Make unlimited queries to your own node
  • Privacy: Queries remain between you and your node
  • Low Latency: Direct node queries without API overhead
  • Full API Access: Complete JSON-RPC API availability
  • Real-time Data: Access to the latest blockchain state

How to install this MCP server

For Claude Code

To add this MCP server to Claude Code, run this command in your terminal:

claude mcp add-json "veri5ight" '{"command":"node","args":["/absolute/path/to/veri5ight/dist/index.js"]}'

See the official Claude Code MCP documentation for more details.

For Cursor

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.

Adding an MCP server to Cursor globally

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": {
        "veri5ight": {
            "command": "node",
            "args": [
                "/absolute/path/to/veri5ight/dist/index.js"
            ]
        }
    }
}

Adding an MCP server to a project

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.

How to use the MCP server

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.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

2. Add this to your configuration file:

{
    "mcpServers": {
        "veri5ight": {
            "command": "node",
            "args": [
                "/absolute/path/to/veri5ight/dist/index.js"
            ]
        }
    }
}

3. Restart Claude Desktop for the changes to take effect

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later