Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A TypeScript MCP server for interacting with the SUI blockchain, enabling operations like balance checks, object management, smart contract calls, and package publishing via CLI.

README.md

SUI MCP Server

A TypeScript MCP server for interacting with the SUI blockchain via CLI.

Network: Testnet (default)

Tools

| Tool | Description | |------|-------------| | sui_active_address | Get current active SUI address | | sui_balance | Get SUI balance for an address | | sui_objects | Get all objects owned by an address | | sui_get_object | Get details of a specific object | | sui_call | Call a Move function on a smart contract | | sui_publish | Publish a Move package | | sui_transfer_object | Transfer an object to another address | | sui_faucet | Request test SUI from faucet | | sui_network | Get current network environment | | sui_addresses | List all addresses in wallet | | sui_transaction | Get transaction details by ID | | sui_gas | Get gas objects for an address |

Setup

npm install

Make sure SUI CLI is installed: ``bash curl -fsSL https://docs.sui.io/guides/install | sh ``

Set up testnet: ``bash sui client new-env --alias testnet --rpc https://fullnode.testnet.sui.io:443 sui client switch --env testnet ``

Running

npm run build
npm start

opencode Integration

Add to your opencode.jsonc: ``jsonc { "mcp": { "sui": { "type": "local", "command": ["node", "YOUR_MCP_SERVER_PATH"] } } } ``

Claude

Add to your .mcp.json: ``json { "mcpServers": { "sui": { "type": "stdio", "command": "node", "args": ["YOUR_MCP_SERVER_PATH"] } } } ``

Usage

Call a Move function

sui_call({
  package: "YOUR_PACKAGE_ID",
  module: "YOUR_MODULE_NAME",
  function: "FUNCTION_NAME",
  typeArgs: "YOUR_TOKEN_TYPE",
  args: "ARG1,ARG2",
  gasBudget: "50000000"
})

Get objects for an address

sui_objects({ address: "YOUR_ADDRESS" })

Get object details

sui_get_object({ objectId: "YOUR_OBJECT_ID" })

Publish a package

sui_publish({
  packagePath: "YOUR_PACKAGE_PATH",
  gasBudget: "100000000"
})

Transfer an object

sui_transfer_object({
  objectId: "YOUR_OBJECT_ID",
  to: "RECIPIENT_ADDRESS",
  gasBudget: "50000000"
})

Tips

  • Gas Budget: Default is 0.05 SUI (50000000 MIST). Increase for complex transactions.
  • Object IDs: Must be in format 0x... (66 chars)
  • Clock Object: Use 0x6 for the Clock object on testnet
  • Type Arguments: For custom tokens, use the full type: 0xTOKEN_ADDRESS::coin::COIN

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Finance & Payments servers.