mcw
Provides multi-chain wallet capabilities for Bitcoin, including address generation (BIP-84/BIP-44), balance queries, and transaction construction/signing/broadcasting on mainnet and testnet.
Supports Ethereum wallet operations such as address generation, balance checks, ERC-20 token management, and transaction building/signing on mainnet and testnets (Sepolia/Holesky).
Enables Solana wallet interactions including address derivation, SOL/SPL token balance queries, faucet airdrops, and transaction signing/broadcasting on mainnet-beta and devnet.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcwWhat's my Bitcoin balance?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
🚀 Multi-Chain CLI Wallet (MCW) & Agentic Framework
A robust, enterprise-grade multi-chain wallet and AI agent framework serving two primary consumers seamlessly:
Humans: Via a rich, interactive, and beautiful Command Line Interface (
mcw).AI Agents: Via a standard Model Context Protocol (MCP) server interface, exposing wallet capabilities as MCP Tools to agents (Claude Desktop, Cursor, Gemini CLI, LangChain, AutoGPT).
🌐 Supported Networks & Derivation Standards
Blockchain | Testnet Networks | Mainnet Network | Derivation Standard | Derivation Path | Address Format |
Bitcoin (BTC) | Testnet3 / Signet | Mainnet | BIP-84 / BIP-44 |
| Native SegWit ( |
Ethereum (ETH) | Sepolia / Holesky | Mainnet | BIP-44 |
| Checksummed ( |
Solana (SOL) | Devnet | Mainnet-Beta | SLIP-0010 / BIP-44 |
| Base58 ( |
Tron (TRX) | Nile / Shasta | Mainnet | BIP-44 |
| Base58Check ( |
Related MCP server: waiaas
⚡ Quick Start (CLI: mcw)
You can run mcw globally on your machine (via npm link or npm i -g @deviykee/mcw) or with zero installation via npx @deviykee/mcw.
1. Initialize Wallet
Generates a fresh 12/24-word BIP-39 mnemonic phrase (or imports an existing one), encrypts the vault using AES-256-GCM with Scrypt key derivation, and displays derived addresses:
mcw init
# Or zero-install:
npx @deviykee/mcw init2. Switch Between Testnet & Mainnet
Toggle environments with safety guards and confirmation prompts:
# View active network mode
mcw network
# Switch to Testnet (risk-free)
mcw network testnet
# Switch to Mainnet (live assets)
mcw network mainnet3. Check Live Balances
Queries live RPCs and displays formatted ASCII tables:
# Check all chains in active network
mcw balance
# Check a specific chain
mcw balance eth
mcw balance sol
mcw balance btc
mcw balance trx4. Tron Nile vs Shasta Selection & Custom RPCs
Configure custom RPC endpoints or toggle between Tron testnet flavors:
# Switch Tron testnet to Shasta
mcw config tron shasta
# Switch Tron testnet to Nile
mcw config tron nile
# Set a custom RPC URL for any chain (e.g. Alchemy / QuickNode / local node)
mcw config set-rpc eth https://your-custom-eth-node.com
mcw config set-rpc sol https://your-custom-sol-node.com
# View active configurations and custom overrides
mcw config list
# Interactive configuration menu
mcw config5. Token Management (ERC-20, Sepolia USDC, LINK, SPL)
Track, query, and transfer custom tokens directly from smart contracts:
# List all configured tokens (Built-in Sepolia USDC, LINK, Devnet USDC + Custom)
mcw token list
# Check token balances
mcw token balance
mcw token balance usdc-sepolia
# Add any custom ERC-20 / SPL token contract
mcw token add
# Send ERC-20 tokens
mcw token send usdc-sepolia 50 0xRecipientAddress...6. Request Testnet Faucet / Airdrop
Requests instant testnet tokens (with automated JSON-RPC airdrop on Solana Devnet and direct faucet links for other networks):
mcw faucet sol
mcw faucet eth
mcw faucet trx
mcw faucet btc7. Send Coins
Interactively estimates fees, asks for vault decryption password, signs, and broadcasts the transaction:
# Interactive mode:
mcw send
# Direct parameters:
mcw send sol 0.1 <RECIPIENT_SOL_ADDRESS>
mcw send eth 0.01 <RECIPIENT_ETH_ADDRESS>🤖 AI Agent MCP Server Integration
MCW implements the official @modelcontextprotocol/sdk JSON-RPC specification over stdio.
MCP Configuration for Claude Desktop / Cursor
Add the following to your claude_desktop_config.json (or Cursor/Gemini MCP config):
{
"mcpServers": {
"mcw": {
"command": "npx",
"args": ["-y", "@deviykee/mcw", "mcp"]
}
}
}Available MCP Tools
📖 Read-Only Tools (No password required)
get_network_mode: Returns whether the wallet is intestnetormainnet.switch_network_mode: Toggles between"testnet"and"mainnet".get_addresses: Returns public addresses and derivation paths for Bitcoin, Ethereum, Solana, and Tron.get_balance: Fetches real-time balances for a specific chain or all chains in the active network.get_transaction_status: Queries transaction status and confirmation count.request_faucet: Triggers automated airdrop or returns faucet claim instructions (testnet mode).
🔐 Action Tools (Safety Protected)
build_transaction: Formulates raw transaction, calculates network gas/fees, and queues transaction in the approval gate with statusPENDING_HUMAN_APPROVAL. Returns apendingTxId.sign_and_send_transaction: Unlocks vault using human password (or session auth) and broadcasts to the network.list_pending_transactions: Lists all pending transactions waiting for human approval.
🧠 Agent Skills (Claude Code, Grok, Cursor, Gemini CLI)
MCW includes standardized Agent Skills located in skills/mcw/:
SKILL.md: Complete skill specification with YAML frontmatter, execution rules, and multi-chain safety protocols.reference.md: Technical command matrix and MCP JSON-RPC parameter schemas.examples.md: Real-world prompt templates and autonomous workflows.
Installing Skill in Claude Code / CLI Agents
Copy the skills/mcw directory into your project's .skills/ or reference skills/mcw/SKILL.md directly in your system prompt or custom instructions.
🔒 Cryptography & Security Model
BIP-39: Mnemonic seed generation with PBKDF2 HMAC-SHA512.
BIP-84 / BIP-44 / SLIP-0010: Native SegWit ECDSA (BTC), Keccak256 ECDSA (ETH & TRX), and Ed25519 (SOL).
AES-256-GCM: Authenticated symmetric encryption with random 96-bit IV and 128-bit authentication tag.
Scrypt KDF: High-iteration, memory-hard key derivation (
N=16384, r=8, p=1, maxmem=64MB) to guard against brute-force attacks.File System Permissions: Storage directory (
~/.mcw/) created with0700permissions and encrypted vault (vault.dat) saved with0600permissions (Unix).
📜 License
MIT License. Built for multi-chain testnet/mainnet operations and autonomous agent integration.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseCqualityCmaintenanceAn MCP server providing unified access to blockchain operations, bridging, swapping, and crypto trading strategies for AI agents.37178GPL 3.0- AlicenseBqualityAmaintenanceSelf-hosted wallet MCP server for AI agents. Provides 42 tools for multi-chain crypto operations: transfers, token management, DeFi (swap, lend, stake, bridge, perp), NFT, smart contracts, and x402 payments. Supports EVM and Solana with policy engine, spending limits, and human approval.6029MIT
- AlicenseBqualityBmaintenanceA comprehensive MCP server that enables AI agents to interact with the TRON blockchain, including tools for blockchain data, token transfers, smart contracts, staking, and wallet management.972614MIT
- AlicenseBqualityCmaintenanceAn MCP server that enables AI agents to interact with the Solana blockchain through 20 tools for wallet management, SPL token operations, blockchain exploration, and DeFi integration via Jupiter.21MIT
Related MCP Connectors
TRON Energy marketplace + DEX swap aggregator for AI agents. 27 MCP tools.
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/devIykee/mcw'
If you have feedback or need assistance with the MCP directory API, please join our Discord server