Skip to content

Latest commit

 

History

History

README.md

@sei-js/mcp-server

npm version License: MIT TypeScript Sei Network

Enable AI assistants to interact with the Sei blockchain

DocumentationGitHubNPMTelegram

🚀 Quick Start

Basic Setup (Read-Only)

Start with read-only blockchain data access:

{
  "mcpServers": {
    "sei": {
      "command": "npx",
      "args": ["-y", "@sei-js/mcp-server"]
    }
  }
}

Full Setup (With Wallet)

To enable transactions and wallet tools, add the wallet mode flag and private key:

{
  "mcpServers": {
    "sei": {
      "command": "npx",
      "args": ["-y", "@sei-js/mcp-server"],
      "env": {
        "WALLET_MODE": "private-key",
        "PRIVATE_KEY": "0x123..."
      }
    }
  }
}

📚 Documentation

For complete documentation, examples, and guides, visit: sei-js.docs.sei.io/mcp-server