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 🙏

© 2026 – Pkg Stats / Ryan Hefner

sui-agent-mcp

v1.0.0

Published

Sui blockchain MCP server for Claude Code - wallet control, Move development, and on-chain interaction

Readme

Sui MCP Server

MCP (Model Context Protocol) server that provides Sui blockchain tools for Claude Code.

Features

  • Wallet Control: Interact with Sui Agent Wallet for signing transactions
  • Move Development: Build, test, and publish Move smart contracts
  • On-chain Queries: Fetch object data and decompile contracts

Tools (14 total)

Wallet Tools

| Tool | Description | |------|-------------| | sui_wallet_address | Get current wallet address | | sui_wallet_balance | Check SUI balance | | sui_wallet_accounts | List all derived accounts | | sui_wallet_pending | View pending signing requests | | sui_wallet_approve | Approve a pending transaction | | sui_wallet_reject | Reject a pending transaction | | sui_wallet_switch_network | Switch network (mainnet/testnet/devnet/localnet) | | sui_wallet_sign_execute | Sign and execute unsigned transaction |

CLI Tools

| Tool | Description | |------|-------------| | sui_cli | Run any Sui CLI command | | sui_move_build | Build a Move package | | sui_move_test_coverage | Run tests with coverage analysis | | sui_move_publish_unsigned | Generate unsigned publish transaction |

Query Tools

| Tool | Description | |------|-------------| | sui_object | Get information about a Sui object | | sui_decompile | Get Suivision URL for package source |

Installation

Prerequisites

  1. Node.js 18+
  2. Sui CLI installed and configured
  3. Sui Agent Wallet (optional, for wallet tools): sui-skills

Add to Claude Code

# Option 1: Run directly from GitHub (recommended)
claude mcp add sui -- npx -y sui-mcp

# Option 2: Clone and run locally
git clone https://github.com/EasonC13-agent/sui-mcp.git
cd sui-mcp
npm install
npm run build
claude mcp add sui -- node /path/to/sui-mcp/dist/index.js

Verify Installation

claude mcp list
# Should show: sui

Configuration

Wallet Server URL

By default, the server connects to http://localhost:3847 for wallet operations. Override with environment variable:

SUI_WALLET_SERVER=http://localhost:3847 npx sui-mcp

Usage Examples

Once added to Claude Code, you can use natural language:

  • "What's my Sui wallet address?"
  • "Check my SUI balance"
  • "Build the Move package at ./my-contract"
  • "Run tests with coverage for the counter module"
  • "Publish this contract to testnet"
  • "Get info about object 0x123..."

Contract Deployment Workflow

  1. Build: sui_move_build
  2. Generate unsigned tx: sui_move_publish_unsigned
  3. Sign and execute: sui_wallet_sign_execute

Related Projects

License

MIT