npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@expertvagabond/sui-mcp-server

v1.0.0

Published

Sui MCP server for wallet management, transaction handling, and interactions on Sui blockchain

Readme

Sui MCP Server

A comprehensive Model Context Protocol (MCP) server for Sui blockchain interactions. This server provides wallet management, transaction handling, and blockchain operations for Sui network.

📍 Publication Links

  • GitHub: https://github.com/ExpertVagabond/sui-mcp-server
  • NPM Package: https://www.npmjs.com/package/@ExpertVagabond/sui-mcp-server (pending publication)
  • Smithery Platform: https://smithery.ai/search?q=ExpertVagabond (listed, deployment pending)
  • Live Demo: https://server.smithery.ai/@ExpertVagabond/sui-mcp-server/mcp (pending deployment)

Features

🔐 Wallet Management

  • Create new wallets with mnemonic phrases
  • Import wallets from mnemonic or private key
  • List all wallets
  • Export wallet details
  • Secure key management

💰 Balance & Object Operations

  • Get SUI balance for wallets
  • Get all coin balances
  • View owned objects
  • Get detailed object information

🔄 Transaction Operations

  • Transfer SUI between addresses
  • Transfer objects
  • Get transaction details
  • View transaction history

🌐 Network Operations

  • Switch between networks (mainnet, testnet, devnet, localnet)
  • Get network information
  • Get chain identifier

⚡ Gas & Fees

  • Get current gas prices
  • Request tokens from faucet (testnet/devnet)

🔍 Validator & Staking

  • Get validator information
  • Staking operations

🛠 Utility Functions

  • Address validation and normalization
  • MIST to SUI conversion
  • SUI to MIST conversion

Installation

From NPM

npm install -g @ExpertVagabond/sui-mcp-server

From Source

git clone https://github.com/ExpertVagabond/sui-mcp-server.git
cd sui-mcp-server
npm install
npm run build

Usage

As MCP Server

sui-mcp-server

Development

npm run dev

Build

npm run build

Test

npm test

Available Tools

Wallet Operations

  • create_wallet - Create a new Sui wallet
  • import_wallet - Import wallet from mnemonic/private key
  • list_wallets - List all wallets
  • get_wallet_address - Get wallet address
  • export_wallet - Export wallet details

Balance Operations

  • get_balance - Get SUI balance
  • get_all_balances - Get all coin balances

Object Operations

  • get_objects - Get owned objects
  • get_object_details - Get object details

Transaction Operations

  • transfer_sui - Transfer SUI
  • transfer_object - Transfer objects
  • get_transaction - Get transaction details
  • get_transactions - Get transaction history
  • get_wallet_transactions - Get wallet transaction history

Network Operations

  • switch_network - Switch networks
  • get_network_info - Get network info
  • get_chain_id - Get chain ID

Gas Operations

  • get_gas_price - Get gas price
  • request_tokens_from_faucet - Request test tokens

Validator Operations

  • get_validators - Get validators
  • get_validator_info - Get validator info

Utility Operations

  • validate_address - Validate address
  • normalize_address - Normalize address
  • convert_mist_to_sui - Convert MIST to SUI
  • convert_sui_to_mist - Convert SUI to MIST

Network Support

  • Mainnet - Production Sui network
  • Testnet - Sui testnet for testing
  • Devnet - Sui development network
  • Localnet - Local Sui network

Security Notes

⚠️ Warning: This server stores private keys in memory during runtime. In production environments, ensure proper security measures:

  • Use secure key storage solutions
  • Implement proper access controls
  • Run in isolated environments
  • Regularly rotate keys
  • Monitor for suspicious activities

Dependencies

  • @mysten/sui - Official Sui TypeScript SDK
  • @modelcontextprotocol/sdk - MCP SDK
  • bip39 - Mnemonic phrase generation
  • ed25519-hd-key - HD key derivation

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

License

MIT License - see LICENSE file for details

Support

Changelog

v1.0.0

  • Initial release
  • Basic wallet operations
  • Transaction handling
  • Network operations
  • Utility functions