@sei-js/mcp-server
v0.3.1
Published
Model Context Protocol (MCP) server for interacting with EVM-compatible networks
Readme
@sei-js/mcp-server
Enable AI assistants to interact with the Sei blockchain
Documentation • GitHub • NPM • Telegram
🚀 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
