S

Sui

Integrates with the Sui blockchain network to enable test token requests, wallet management, and smart contract interactions using the official Sui SDK

Sui·No reviews yet
Repo
Share:

About

Integrates with the Sui blockchain network to enable test token requests, wallet management, and smart contract interactions using the official Sui SDK

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Sui.

What is the primary function of the Sui MCP?
The Sui MCP integrates with the Sui blockchain network to facilitate test token requests, wallet management, and smart contract interactions. It leverages the official Sui SDK to provide these functionalities.
How can I install the Sui MCP in a client application?
Installation typically involves adding the MCP's repository URL (https://github.com/deanplus/sui-mcp) within your MCP client's configuration. Specific steps vary by client application, such as Claude Desktop, Cursor, or Cline.
Does the Sui MCP require an API key or other credentials?
No, the Sui MCP does not require API keys, OAuth, or any other credentials for its operation. It uses a none authentication type.
What are the key capabilities exposed by the Sui MCP?
This MCP exposes capabilities for requesting test tokens, managing Sui wallets, and interacting with smart contracts on the Sui network. These are all powered by the official Sui SDK.
Are there any known limitations or prerequisites for using the Sui MCP?
A prerequisite is access to a Sui blockchain network endpoint, as this MCP interacts directly with the network. A common gotcha is ensuring proper network connectivity and configuration.

Install Sui

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "sui": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sui"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "sui": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sui"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "sui": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sui"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.