Sui MCP Tools

Sui MCP Tools

site icon
2025.04.08 1
TypeScript区块链工具Sui 交互工具金融服务
Sui MCP Tools 是一个基于 Sui 区块链的 MCP(Model Context Protocol)工具包。该项目提供了与 Sui 区块链交互的功能,并集成了 MCP SDK 以实现模型上下文协议特性。
View on GitHub

Overview

基本能力

产品定位

Sui MCP Tools 是一个基于 Sui 区块链的 MCP 工具包,主要用于与 Sui 区块链交互并实现模型上下文协议功能。

核心功能

  • 使用 TypeScript 开发,确保类型安全
  • 深度集成 Sui 区块链功能
  • 支持多种网络环境(testnet, devnet)
  • 提供完整的构建脚本和开发工具链

适用场景

  • 需要与 Sui 区块链交互的开发场景
  • 需要实现模型上下文协议功能的项目
  • 在测试网络或开发网络环境中进行区块链操作

工具列表

  • Testnet Faucet:请求 SUI 代币
  • Check SUI balance:检查 SUI 余额
  • Transfer SUI:转账 SUI 代币

常见问题解答

无明确常见问题解答部分

使用教程

使用依赖

无明确前置依赖要求

安装教程

方法1:使用 npx(推荐)

在 Claude Desktop 配置文件中添加以下配置:

{
  "mcpServers": {
    "sui-tools": {
      "command": "npx",
      "args": ["-y", "sui-mcp@latest"]
    }
  }
}

方法2:本地构建

  1. 克隆并安装依赖:
git clone https://github.com/0xdwong/sui-mcp.git
cd sui-mcp
yarn install
  1. 构建项目:
yarn build
  1. 配置 Claude Desktop 使用本地构建:
{
  "mcpServers": {
    "sui-tools": {
      "command": "node",
      "args": ["<absolute-path-to-your-project>/build/index.js"]
    }
  }
}

配置位置

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

调试方式

无明确调试步骤说明

许可证

该项目遵循 MIT 开源许可条款,请参阅 MIT 了解完整条款。