CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Sui Mcp Server

expertvagabond/sui-mcp-server
1STDIOregistry active
Summary

This is the kitchen sink for Sui blockchain operations. It wraps the official Mysten SDK to expose 53 tools across wallets, coin transfers, object queries, Move contract introspection, staking, SuiNS name resolution, and DeFi protocols like Cetus and DeepBook. You can create wallets, execute Move calls with dev_inspect simulation, query validator sets, resolve .sui names, and pull pool data from major DEXes. Connects to public RPC nodes on mainnet, testnet, and devnet with no API key required. Reach for this when you need programmatic access to the full Sui ecosystem rather than just balance checks and simple transfers.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

sui-mcp-server

npm version License: MIT Node Tools

The most comprehensive Sui blockchain MCP server. 53 tools with GraphQL + JSON-RPC dual transport -- wallets, DeFi (Cetus, DeepBook), SuiNS, staking, validators, Move introspection, and the full Sui RPC surface.

Competitors offer 10-15 tools for basic operations. This server covers the entire Sui ecosystem in a single package.

Install

npx sui-mcp-server

Or install globally:

npm install -g sui-mcp-server
sui-mcp-server

Configure

Add to your MCP config (claude_desktop_config.json or ~/.mcp.json):

{
  "mcpServers": {
    "sui": {
      "command": "npx",
      "args": ["-y", "sui-mcp-server"]
    }
  }
}

No API key required -- connects directly to Sui public RPC nodes.

Tools (53)

Wallet Management (4)

ToolDescriptionKey Params
create_walletCreate a new Ed25519 keypair (in-memory only, not persisted)--
import_walletImport from a Bech32-encoded private key (suiprivkey...)privateKey
list_walletsList all wallets in the current session--
get_balanceGet SUI balance for any addressaddress

Coin Operations (4)

ToolDescriptionKey Params
get_all_balancesAll coin balances for an address (SUI + other coin types)address
get_coinsCoin objects of a specific type owned by an addressaddress, coinType
get_coin_metadataMetadata for a coin type (name, symbol, decimals)coinType
get_total_supplyTotal circulating supply of a coin typecoinType

Transfers (4)

ToolDescriptionKey Params
transfer_suiTransfer SUI between addresses (amount in SUI, not MIST)from, to, amount
transfer_objectsTransfer one or more objects to a recipientfrom, objectIds, to
merge_coinsMerge multiple coins into one (handles gas conflicts)walletName, coinType
split_coinsSplit a coin into multiple coinswalletName, coinId, amounts

Object Queries (5)

ToolDescriptionKey Params
get_objectFull details of any on-chain object by IDobjectId
get_owned_objectsObjects owned by an address with optional type filteringaddress, type
get_dynamic_fieldsDynamic fields of an object (tables, bags)parentId
multi_get_objectsBatch-fetch up to 50 objects in one callobjectIds
get_object_historyTrace all transactions that touched a given objectobjectId

Transactions (4)

ToolDescriptionKey Params
get_transactionFull transaction details by digestdigest
dry_run_transactionDry-run to preview effects without executingtxBytes
query_transactionsSearch by sender, recipient, object, or Move functionfilter
get_total_transactionsTotal transaction count on the network--

Move Smart Contracts (7)

ToolDescriptionKey Params
move_callExecute a Move function callwalletName, target, arguments
dev_inspectSimulate a Move call without executing (no wallet needed)sender, target, arguments
get_normalized_moduleFull Move module definition (functions, structs)package, module
get_move_functionMove function details (params, return types, visibility)package, module, function
get_move_structMove struct definition (fields, abilities)package, module, struct
get_package_modulesList all modules in a Move packagepackage
get_move_call_metricsNetwork-wide Move call metrics--

Staking (4)

ToolDescriptionKey Params
get_stakesAll staking positions for an addressaddress
request_add_stakeStake SUI with a validatorwalletName, amount, validator
request_withdraw_stakeWithdraw staked SUIwalletName, stakedSuiId
get_validatorsFull validator set with APY, commission, and stake amounts--

Events (1)

ToolDescriptionKey Params
query_eventsQuery on-chain events by type, sender, package, or digestfilter

Network & Analytics (9)

ToolDescriptionKey Params
switch_networkSwitch between mainnet, testnet, devnet, localnetnetwork
get_network_infoChain ID, epoch, gas price, latest checkpoint--
get_latest_checkpointLatest checkpoint sequence number--
get_reference_gas_priceCurrent reference gas price in MIST--
get_checkpointDetailed checkpoint data by sequence numbersequenceNumber
get_epoch_infoHistorical epoch data (times, stakes, gas summaries)epoch
get_protocol_configSui protocol configuration (limits, features)--
get_system_stateFull system state: epoch, validators, storage fund--
get_committee_infoValidator committee info for any epochepoch

SuiNS Name Service (4)

ToolDescriptionKey Params
resolve_nameResolve example.sui to a Sui addressname
resolve_addressReverse-resolve an address to SuiNS name(s)address
suins_get_name_recordFull name record -- NFT ID, target, expiration, metadataname
suins_get_priceRegistration and renewal pricing by name lengthlength

DeFi: Cetus DEX (2)

ToolDescriptionKey Params
cetus_get_poolsQuery Cetus CLMM pools by coin typescoinTypeA, coinTypeB
cetus_get_poolDetailed pool data for a specific Cetus poolpoolId

DeFi: DeepBook (1)

ToolDescriptionKey Params
deepbook_get_poolDeepBook v3 order book data -- pool state and dynamic fieldspoolId

DeFi: Token Tools (3)

ToolDescriptionKey Params
get_token_priceToken price by querying DeFi pool reservestoken
swap_quoteSwap quote by simulating against a pooltokenIn, tokenOut, amount
list_common_tokensCommon Sui tokens with full coin type addresses--

Faucet (1)

ToolDescriptionKey Params
request_faucetRequest SUI from faucet (devnet and testnet only)address

Why This One?

  • 53 tools vs 10-15. Competitors like 0xdwong/sui-mcp cover basic operations. This server includes DeFi (Cetus, DeepBook), SuiNS, Move introspection, staking, validators, and full analytics.
  • GraphQL + JSON-RPC dual transport. Built on the official @mysten/sui v2.11 SDK with @mysten/suins for name service -- future-proofed for the GraphQL migration.
  • Tested end-to-end. 59 passing tests across devnet, testnet, and mainnet. Wallet creation, transfers, staking, DeFi queries, SuiNS resolution, and Move inspection all verified.

Token Shortcuts

Use symbol shortcuts instead of full coin type addresses:

ShortcutFull Coin Type
SUI0x2::sui::SUI
USDC0xdba34672e...::usdc::USDC
USDT0xc060006111...::coin::COIN
WETH0xaf8cd5edc1...::coin::COIN
DEEP0xdeeb7a4662...::deep::DEEP

Networks

Starts on devnet by default. Switch at any time with switch_network:

NetworkRPC Endpoint
mainnethttps://fullnode.mainnet.sui.io:443
testnethttps://fullnode.testnet.sui.io:443
devnethttps://fullnode.devnet.sui.io:443
localnethttp://127.0.0.1:9000

Security

  • Keys are in-memory only -- never written to disk, never logged
  • Private keys redacted from all error messages
  • Rate limiting: 120 calls/minute (sliding window)
  • All inputs validated with Zod strict schemas

Development

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

License

MIT -- Matthew Karsten / Purple Squirrel Media

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Monitoring & ObservabilityFinance & Commerce
Registryactive
Packagesui-mcp-server
TransportSTDIO
UpdatedMar 26, 2026
View on GitHub

Related Monitoring & Observability MCP Servers

View all →
Mcp Observability

io.github.infoinlet-marketplace/mcp-observability

Observability for incident agents — query Loki (LogQL), Prometheus (PromQL), Elasticsearch.
Monitor

betterdb-inc/monitor

BetterDB MCP server - Valkey observability for Claude Code and other MCP clients
1.1k
Datadog

com.mcparmory/datadog

Monitor infrastructure, manage agents and deployments, track metrics, logs, and events
25
Observability Mcp

thotischner/observability-mcp

Unified observability gateway for AI agents — Prometheus, Loki & more, with anomaly detection.
5
Datadog Mcp

io.github.tantiope/datadog-mcp

Full Datadog API access: monitors, logs, metrics, traces, dashboards, and observability tools
4
Datadog

io.github.us-all/datadog

Datadog MCP — 165 tools for metrics, monitors, logs, APM, RUM, incidents, CI/CD, fleet
1