Quick Start
This is the shortest path to a working approval flow.
1. Start the TUI
mutx-tui
On first run, create or import a wallet from the Wallets tab:
- Press
nto create a wallet, orito import one - Choose the network for the wallet
- Use password protection unless you are testing on throwaway wallets
- Press
rto display the receive address - Press
bto refresh balances
2. Start the MCP server
Local stdio mode:
mutx-mcp
HTTP mode:
mutx-mcp --mode http --bind 0.0.0.0:8000
3. Connect your MCP client
Minimal local configuration:
{
"mcpServers": {
"mutx": {
"command": "mutx-mcp"
}
}
}
If you run the MCP server over HTTP, point your client to /mcp on the chosen host and port.
4. Approve the first request
When the client calls a sensitive tool:
- the request appears in the Requests tab
- press
yto approve - press
nto deny
WalletConnect session proposals are handled from the DApps tab rather than the Requests queue.
See the MCP Setup guide for detailed configuration.