Skip to main content
Glama
5ajaki

Veri5ight MCP Server

by 5ajaki

🔍 Veri5ight

您友好的以太坊节点私语者!一个模型上下文协议 (MCP) 服务器,帮助 Claude 与以太坊节点聊天。

🌟 这是怎么回事?

Veri5ight 是 Claude 和以太坊节点之间的直接接口,提供:

  • 💰 任何 ERC20 的实时代币余额和委托信息

  • 🔎 智能合约信息

  • 🚀 直接访问节点,不受速率限制

  • 🔒 私密、安全的互动

Related MCP server: ENS MCP Server

🚀 快速入门

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

# Install dependencies
npm install

# Build the project
npm run build

⚙️ 配置

  1. .env.example复制到.env

cp .env.example .env
  1. 添加您的以太坊节点 URL(示例如下所示 - 使用您的实际节点 URL 和端口进行更新):

ETH_NODE_URL="http://localhost:8545"  # Example - replace with your node's URL and port
  1. 配置Claude桌面:

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

注意:步骤 3 中的路径必须指向本地 dist 目录中已编译的 index.js 文件。该文件是在运行npm run build时创建的。

启动选项

默认情况下,Veri5ight 会随 Claude 桌面应用程序自动启动。如果您希望按需运行:

  1. 从 package.json 中删除使用 Claude 自动启动的 postbuild 脚本

  2. 需要时手动运行:

node dist/index.js

🎮 可用工具

ethereum_getTokenBalance

使用地址或 ENS 名称获取任何 ERC20 代币的代币余额。

例子:

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

ethereum_getTokenDelegation

检查任何治理令牌的委托信息。

例子:

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

ethereum_getContractInfo

获取有关任何智能合约的详细信息。

例子:

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

ethereum_getRecentTransactions

查看任意地址的近期交易。注意:此功能会扫描最近 10 个区块,查找涉及指定地址的交易。

例子:

Claude, show me any recent transactions for vitalik.eth

该函数将返回在这些区块中找到的最多请求数量的交易(默认为 3)。如果在最近的区块中未找到任何交易,则返回空结果。

🔍 调试

检查 Claude 的日志是否存在任何问题:

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

💡 为什么要直接访问节点?

  • 低延迟:直接节点查询,无需 API 开销

  • 无速率限制:对您自己的节点进行无限制查询

  • 隐私:查询只在您和您的节点之间进行

  • 完全访问:完整的 JSON-RPC API 可用性

  • 实时数据:直接访问最新的区块链状态

🛠️ 开发

# Watch mode for the cool kids
npm run dev

# Build for production
npm run build

🤝 贡献

有想法?发现 bug?欢迎提交 PR!只需:

  1. 叉子

  2. 分支

  3. 编码

  4. 公关

📜 许可证

MIT - 尽情发挥吧!无聊的法律条款请参阅LICENSE

🙏 道具

  • 由 Veri5ight 团队倾情打造

  • 由克劳德的大脑驱动

  • 站在以太坊巨人的肩膀上

🆘 需要幫助嗎?

  • 🐛 发现 bug?提交问题!

  • 🤔 有问题?欢迎讨论!

  • 🎉 有什么酷炫的功能创意?快来听听吧!

记住:Veri5ight 就像一把保护以太坊数据的瑞士军刀——千万别想用它开瓶子!🍾

Available Tools

5 tools
ethereum_getContractInfoC

Get information about any contract

ParametersJSON Schema
NameRequiredDescriptionDefault
addressYesContract address or ENS name

TDQS

C2.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool 'Get information' but doesn't clarify what type of information (e.g., ABI, bytecode, metadata), whether it's read-only or has side effects, or any constraints like rate limits or authentication needs. This leaves significant gaps in understanding the tool's behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with no wasted words. It's front-loaded with the core action and resource, making it easy to parse quickly. Every part of the sentence contributes directly to stating the tool's purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what information is returned (e.g., contract details, metadata), how errors are handled, or any behavioral traits. For a tool with no structured behavioral data, the description should provide more context to compensate, but it falls short.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with the 'address' parameter documented as 'Contract address or ENS name'. The description adds no additional meaning beyond this, such as format examples or validation rules. With high schema coverage, the baseline score of 3 is appropriate, as the schema handles the parameter documentation adequately.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Get information about any contract' states a clear verb ('Get') and resource ('contract'), but it's vague about what specific information is retrieved. It doesn't differentiate from sibling tools like ethereum_getTransactionInfo or ethereum_getTokenBalance, which also retrieve contract-related information. The purpose is understandable but lacks specificity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention what makes it distinct from sibling tools such as ethereum_getTransactionInfo or ethereum_getTokenDelegation, nor does it specify prerequisites or exclusions. Without this context, the agent must infer usage from the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

ethereum_getRecentTransactionsC

Get recent transactions for an Ethereum address

ParametersJSON Schema
NameRequiredDescriptionDefault
addressYesEthereum address or ENS name
limitNoNumber of transactions to return (default: 3)

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure but only states what the tool does without adding context. It does not mention rate limits, error handling, data freshness, or whether it queries a specific blockchain network (e.g., mainnet, testnet), leaving significant gaps in understanding its operational traits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence that efficiently conveys the core functionality without unnecessary words. It is front-loaded and appropriately sized for the tool's complexity, making it easy to parse and understand quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete for a tool that fetches blockchain data. It does not cover return values (e.g., transaction format, timestamps), error cases, or network specifics, which are critical for an AI agent to use this tool effectively in context with its siblings.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, clearly documenting both parameters ('address' and 'limit') with their types and defaults. The description does not add meaning beyond this, such as explaining ENS name resolution or transaction ordering, so it meets the baseline for adequate but not enhanced parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('Get') and resource ('recent transactions for an Ethereum address'), making it immediately understandable. However, it does not explicitly differentiate from sibling tools like 'ethereum_getTransactionInfo' (which might get details of a specific transaction), leaving room for ambiguity in sibling distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives, such as the sibling 'ethereum_getTransactionInfo' for detailed info on a single transaction. It lacks context about use cases, prerequisites, or exclusions, offering minimal usage direction beyond the basic purpose.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

ethereum_getTokenBalanceC

Get ERC20 token balance for an address

ParametersJSON Schema
NameRequiredDescriptionDefault
addressYesEthereum address or ENS name
tokenYesToken contract address or ENS name

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action ('Get') but doesn't describe traits like read-only nature, potential rate limits, error conditions, or response format. This is a significant gap for a tool with zero annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero waste. It's front-loaded with the core purpose and uses clear terminology, making it easy to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete. It doesn't address behavioral traits, return values, or error handling, which are crucial for a tool interacting with blockchain data. The high schema coverage doesn't compensate for these gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents both parameters ('address' and 'token') with their types and descriptions. The description adds no additional parameter semantics beyond what the schema provides, meeting the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Get') and resource ('ERC20 token balance for an address'), making the purpose immediately understandable. It doesn't explicitly differentiate from sibling tools like 'ethereum_getContractInfo' or 'ethereum_getTokenDelegation', but the specificity of 'ERC20 token balance' helps distinguish it from general balance queries.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools, prerequisites, or contextual constraints, leaving the agent to infer usage based on the tool name alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

ethereum_getTokenDelegationC

Get delegation info for an ERC20 governance token

ParametersJSON Schema
NameRequiredDescriptionDefault
addressYesEthereum address or ENS name
tokenYesToken contract address or ENS name

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states what the tool does but doesn't describe any behavioral traits such as whether it's read-only, requires authentication, has rate limits, or what format the delegation info returns. This leaves significant gaps in understanding how the tool behaves.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, clear sentence that efficiently conveys the tool's purpose without any unnecessary words. It's front-loaded with the core functionality, making it easy to parse and understand quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete. It doesn't address what 'delegation info' entails, how it's structured, or any behavioral aspects like error handling. For a tool with two parameters and no structured output information, more context is needed to fully understand its operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, clearly documenting both parameters ('address' and 'token'). The description doesn't add any additional semantic meaning beyond what the schema provides, such as explaining the relationship between the parameters or providing usage examples. This meets the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('Get') and resource ('delegation info for an ERC20 governance token'), making it immediately understandable. However, it doesn't explicitly differentiate this from sibling tools like 'ethereum_getTokenBalance' or 'ethereum_getContractInfo', which prevents a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention any prerequisites, context for usage, or comparisons to sibling tools, leaving the agent to infer usage scenarios based solely on the tool name and description.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

ethereum_getTransactionInfoC

Get detailed information about an Ethereum transaction

ParametersJSON Schema
NameRequiredDescriptionDefault
hashYesTransaction hash

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool 'gets' information, implying a read-only operation, but doesn't specify if it's safe, requires authentication, has rate limits, or what the return format looks like (e.g., JSON structure, error handling). For a tool with no annotations, this is a significant gap in transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero waste—it directly states the tool's purpose without unnecessary words. It's appropriately sized and front-loaded, making it easy for an agent to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of Ethereum transactions and the lack of annotations and output schema, the description is incomplete. It doesn't explain what 'detailed information' includes (e.g., block number, gas used, status), potential errors (e.g., invalid hash), or behavioral traits. For a tool with no structured output and no annotations, more context is needed to be fully helpful.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with the 'hash' parameter clearly documented as 'Transaction hash'. The description adds no additional meaning beyond this, such as hash format (e.g., 0x-prefixed hex) or examples. Given the high schema coverage, the baseline score of 3 is appropriate, as the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Get') and resource ('detailed information about an Ethereum transaction'), making the purpose unambiguous. However, it doesn't differentiate this from sibling tools like 'ethereum_getRecentTransactions' or 'ethereum_getContractInfo', which also retrieve transaction-related data, so it doesn't reach the highest clarity level.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing a transaction hash), exclusions, or comparisons to siblings like 'ethereum_getRecentTransactions' for recent transactions or 'ethereum_getContractInfo' for contract details. This leaves the agent without context for tool selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 5 tool updatesv1.0.0
    • First observedethereum_getContractInfo
    • First observedethereum_getRecentTransactions
    • First observedethereum_getTokenBalance
    • First observedethereum_getTokenDelegation
    • First observedethereum_getTransactionInfo

TDQS

B3.2/5.0

Scored across 5 tools

Disambiguation5/5

Each tool has a clearly distinct purpose targeting different Ethereum data types: contract info, recent transactions, token balance, token delegation, and transaction details. There is no overlap in functionality, making it easy for an agent to select the right tool.

Naming Consistency5/5

All tools follow a consistent 'ethereum_verbNoun' pattern with snake_case, using descriptive verbs like 'get' and specific nouns like 'ContractInfo' or 'TokenBalance'. This predictability enhances usability.

Tool Count4/5

Five tools is a reasonable number for an Ethereum data server, covering key queries. It might be slightly thin for broader blockchain interactions, but it's well-scoped for its apparent purpose of retrieving specific Ethereum data.

Completeness3/5

The tools cover read operations for contracts, transactions, tokens, and delegation, but there are notable gaps such as write operations (e.g., sending transactions), broader blockchain state queries, or support for other token standards. Agents can work with the provided tools but may hit limitations.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Provides Ethereum blockchain data tools via Etherscan's API, enabling users to check ETH balances, view transactions, track token transfers, fetch contract ABIs, monitor gas prices, and resolve ENS names.
    6
    7 npm
    1
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    Enables Claude to interact with the Ethereum Name Service (ENS) system to resolve names, check availability, retrieve records, and perform other ENS-related operations through natural language.
    8
    34 npm
    8
    MIT
  • A
    license
    D
    quality
    D
    maintenance
    A comprehensive toolkit for Ethereum blockchain analysis within Claude AI, enabling contract auditing, wallet analysis, profitability tracking, and on-chain data retrieval.
    11
    1,026 npm
    19
    MIT