Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Sui Butler

    Serverless-based MCP server implementation for Sui blockchain using zkLogin

    2 stars
    TypeScript
    Updated Jun 16, 2025
    ai
    ai-agent-kit
    cetus
    claude
    mcp
    move
    sui
    web3
    zklogin

    Table of Contents

    • Move to https://github.com/tamago-labs/sui-mcp
    • Components
    • Features
    • Using with Claude Desktop
    • Private Key Mode ###
    • zkLogin Mode ###
    • Use Cases
    • 1. DeFi Portfolio Management
    • 2. Smart Contract Development & Testing Assistance
    • 3. Protocol Governance & Parameter Management
    • Background
    • Available Tools
    • Wallet Operations
    • Token Transfers & DeFi
    • Staking Operations
    • Token Management
    • SNS Domain Services
    • Sui CLI Integration
    • Price Data (Pyth)
    • zkLogin Transaction Flow
    • Troubleshooting
    • Work with Local Files
    • License

    Table of Contents

    • Move to https://github.com/tamago-labs/sui-mcp
    • Components
    • Features
    • Using with Claude Desktop
    • Private Key Mode ###
    • zkLogin Mode ###
    • Use Cases
    • 1. DeFi Portfolio Management
    • 2. Smart Contract Development & Testing Assistance
    • 3. Protocol Governance & Parameter Management
    • Background
    • Available Tools
    • Wallet Operations
    • Token Transfers & DeFi
    • Staking Operations
    • Token Management
    • SNS Domain Services
    • Sui CLI Integration
    • Price Data (Pyth)
    • zkLogin Transaction Flow
    • Troubleshooting
    • Work with Local Files
    • License

    Documentation

    Sui Butler

    NPM Version

    Move to https://github.com/tamago-labs/sui-mcp

    Sui Butler is a Model Context Protocol (MCP) server implementation for the Sui blockchain ecosystem that bridges AI intelligence for simplified development and more.

    • YouTube Demo
    • Website
    • Presentation
    • NPM Registry
    • Backend Repo

    Components

    The system is composed of two subsystems:

    • Sui Butler Client – (This repository) A Node.js TypeScript library designed to run inside MCP-compatible AI model clients such as Claude Desktop. It enables AI agents to interact with the Sui blockchain.
    • Sui Butler Backend – The backend system built using the AWS Serverless Stack. It includes backend services and a dashboard for issuing access keys and managing transactions in zkLogin mode.

    Features

    • 30+ MCP tools covering account management, smart contract development, staking, token operations and market data
    • Token swaps on Mainnet via the Cetus DEX Aggregator
    • Pyth price oracle integration for real-time market data
    • Sui CLI integration for smart contract development and testing
    • Fully non-custodial, enables transactions using zkLogin wallets from the AI chat interface

    Using with Claude Desktop

    There are two mode available: zkLogin (recommended for most new users) and Private Key (for advanced users).

    Private Key Mode ###

    In Private Key mode, all operations (including transfers and other write operations) will be executed automatically without requiring additional approval.

    1. Install Claude Desktop if you haven't already

    2. Open Claude Desktop settings

    3. Add the Sui MCP client to your configuration:

    code
    {
      "mcpServers": {
        "sui-butler": {
          "command": "npx",
          "args": [
            "-y",
            "sui-butler",
            "--sui_private_key=YOUR_PRIVATE_KEY", 
            "--sui_network=mainnet"
          ],
          "disabled": false
        }
      }
    }

    Private Key mode is recommended for advanced users who can securely manage their private keys. The MCP client handles transactions locally without exposing any data to external servers.

    zkLogin Mode ###

    With zkLogin authentication, read operations (balance checks, quotes) work immediately, but write operations (transfers, swaps) require approval in the dashboard.

    1. Install Claude Desktop if you haven't already

    2. Open Claude Desktop settings

    3. Add the Sui MCP client to your configuration:

    code
    {
      "mcpServers": {
        "sui-butler": {
          "command": "npx",
          "args": [
            "-y",
            "sui-butler",
            "--sui_access_key=YOUR_ACCESS_KEY", 
            "--sui_network=mainnet"
          ],
          "disabled": false
        }
      }
    }

    The access key can be obtained from the dashboard. After logging in, a unique access key will be generated for each user.

    Use Cases

    1. DeFi Portfolio Management

    Butler connects to Pyth price oracles and external sources to help you:

    • Monitor real-time cryptocurrency prices across multiple assets
    • Compare prices across different platforms for optimal trading opportunities
    • Execute token swaps via Cetus Aggregator

    *Example:*

    Screenshot from 2025-05-18 18-08-37

    Screenshot from 2025-05-18 18-11-29

    2. Smart Contract Development & Testing Assistance

    Butler integrates with the Sui CLI to help developers:

    • Analyze existing Move code and suggest improvements
    • Generate comprehensive test cases for smart contracts
    • Publish and upgrade packages directly through AI conversation

    *Example:*

    Screenshot from 2025-05-18 18-13-38

    Screenshot from 2025-05-18 18-14-05

    Screenshot from 2025-05-18 18-14-20

    Screenshot from 2025-05-18 18-14-34

    3. Protocol Governance & Parameter Management

    Butler assists DeFi protocol managers with:

    • Checking external sources to determine optimal parameters based on current market conditions
    • For example, in collateralization protocols, Butler can analyze asset prices to suggest better collateral ratio settings for smart contracts
    • Then propose new governance parameters through AI conversations

    *Example:*

    Screenshot from 2025-05-22 08-02-10

    Background

    Today, when building AI applications—especially those focused on crypto, we often rely on agent kits based on Langchain. These kits tightly couple the AI model and components, requiring frequent updates, otherwise, the application risks becoming non-functional within a few months or even weeks.

    Model Context Protocol (MCP), introduced by Claude AI in late 2024, has quickly become popular today. It solves this issue by integrating directly with AI interfaces, allowing users to easily switch to the latest models and interact with Web3 through standardized tools.

    Available Tools

    Wallet Operations

    Tool NameDescriptionExample Usage
    sui_get_wallet_addressRetrieve your wallet address"What's my wallet address?"
    sui_get_all_balancesGet all token balances"Show my token balances"

    Token Transfers & DeFi

    Tool NameDescriptionExample Usage
    sui_transfer_tokenTransfer tokens to another address"Transfer 10 SUI to 0x123..."
    sui_get_swap_quoteGet a quote for swapping tokens"Get quote for swapping 10 SUI to CETUS"
    sui_swap_tokensSwap tokens on Cetus Aggregator"Swap 10 SUI to CETUS with 0.5% slippage"

    Staking Operations

    Tool NameDescriptionExample Usage
    sui_get_validatorsGet all active validators"What are good validator to stake with?"
    sui_stakeStake SUI tokens to a validator"Stake 100 SUI to validator X"
    sui_get_stakeGet all staked SUI tokens"Show my staked positions"
    sui_unstakeUnstake SUI tokens"Unstake my SUI from validator X"

    Token Management

    Tool NameDescriptionExample Usage
    sui_deploy_tokenDeploy a new token on Sui"Create a token named MyToken with symbol MTK"

    SNS Domain Services

    Tool NameDescriptionExample Usage
    sui_get_sns_name_recordGet SNS domain information"Look up info about domain.sui"
    sui_register_snsRegister a SNS domain"Register myname.sui for 2 years"

    Sui CLI Integration

    Tool NameDescriptionExample Usage
    sui_cli_publishDeploy a Move package to the network"Deploy a Move package on provided folder to the network"
    sui_cli_move_testRun Move unit tests on the folder"Run tests for my smart contract on provided folder"
    sui_cli_move_newCreate a new Move project"Help create a new move project name my-project-test"
    sui_cli_move_buildBuild a Move package"Help build the package on the provided folder"
    sui_cli_callCall a Move function"Call the package 0x1234 on update_k() with this args [10000]"
    sui_cli_active_envGet the currently active Sui network environment"Which network of Sui CLI connected to?"
    sui_cli_active_addressGet the active address on Sui CLI"Get active address on Sui CLI?"
    sui_cli_addressesList all wallet addresses, their aliases"List all wallets on Sui CLI?"
    sui_cli_switch_addressChange the active address"Change active address on Sui CLI to 0x456"

    Price Data (Pyth)

    Tool NameDescriptionExample Usage
    pyth_search_price_feedsSearch for price feeds"Find BTC price feeds on Pyth"
    pyth_get_pricesGet prices by feed IDs"Get the latest BTC and ETH prices"
    pyth_get_common_crypto_pricesGet common crypto prices"What are the current prices for BTC, ETH, SOL and SUI?"

    zkLogin Transaction Flow

    When a user operates in zkLogin mode using an MCP-compatible AI client:

    1. The client pushes a transaction request to the backend.

    2. The transaction is stored in the database with a pending status.

    3. The user can visit the dashboard to manually approve the transaction using their zkLogin-authenticated session.

    Troubleshooting

    If you're using Ubuntu or another Linux environment with NVM, you'll need to manually configure the path. Follow these steps:

    1. Install the Sui Butler under your current NVM-managed Node.js version.

    code
    npm install -g sui-butler

    2. Due to how NVM installs libraries, you may need to use absolute paths in your config. Replace the example values below with your actual username and Node version:

    code
    {
      "mcpServers": {
        "sui-mcp": {
          "command": "/home/YOUR_NAME/.nvm/versions/node/YOUR_NODE_VERSION/bin/node",
          "args": [
            "/home/YOUR_NAME/.nvm/versions/node/YOUR_NODE_VERSION/bin/sui-butler",
            "--sui_access_key=YOUR_ACCESS_KEY",
            "--sui_network=mainnet"
          ]
        }
      }
    }

    3. Restart Claude Desktop and it should work now.

    Work with Local Files

    When working with local files especially when using Sui CLI tools for smart contract development to create, build, and test a Move package on your machine—you’ll need to import an additional MCP server library of filesystem made by Claude team. Use with:

    code
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "${workspaceFolder}"
      ],
      "disabled": false
    }

    workspaceFolder refers to your working directory. You can provide more than one argument. Subfolders or specific files can then be referenced in your AI prompt.

    If you're using Linux and encounter issues during setup, please refer to the troubleshooting section.

    License

    This project is licensed under the MIT License.

    Similar MCP

    Based on tags & features

    • MC

      Mcp Open Library

      TypeScript·
      42
    • AN

      Anilist Mcp

      TypeScript·
      57
    • MC

      Mcp Ipfs

      TypeScript·
      11
    • LI

      Liveblocks Mcp Server

      TypeScript·
      11

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • MC

      Mcp Open Library

      TypeScript·
      42
    • AN

      Anilist Mcp

      TypeScript·
      57
    • MC

      Mcp Ipfs

      TypeScript·
      11
    • LI

      Liveblocks Mcp Server

      TypeScript·
      11

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k