一个用于 Web3 交互的模型上下文协议(MCP)服务器实现,适用于 EVM 链。此服务器借助 Model Context Protocol 达成与区块链网络的无缝交互,为 Web3 应用提供了强大支持。
本服务器可助力开发者在 EVM 链上实现各类 Web3 交互操作,如查询代币余额、调用智能合约等。
要通过 Smithery 自动安装 Web3 MCP Server for Claude Desktop,可使用以下命令:
npx -y @smithery/cli install web3-mcp-server --client claude
将以下配置添加到您的 Claude Desktop 设置中:
{
"mcpServers": {
"web3": {
"command": "npx",
"args": ["-y", "web3-mcp-server"]
}
}
}
对于基于 Docker 的部署,使用以下配置:
{
"mcpServers": {
"web3": {
"command": "docker",
"args": ["run", "-i", "--rm", "emanueljr/web3-mcp-server"]
}
}
}
该项目在 MIT License 下授权 - 有关详细信息,请参阅 LICENSE 文件。
欢迎贡献!请随时提交 Pull Request。