Client Integration
[!NOTE] No manual process management needed. Once setup completes, your AI client automatically starts Mux when a session opens and stops it when the session closes. Mux runs as a managed child process — just like any other MCP server in your config. You never need to run
node dist/index.jsyourself.
Kiro CLI / Kiro IDE
~/.kiro/settings/mcp.json
{
"mcpServers": {
"mux": {
"command": "node",
"args": ["/absolute/path/to/mux/dist/index.js"],
"env": {
"MUX_LOG_LEVEL": "info"
},
"disabled": false,
"autoApprove": ["mux_list_servers"]
}
}
}
Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mux": {
"command": "node",
"args": ["/absolute/path/to/mux/dist/index.js"],
"disabled": false
}
}
}
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mux": {
"command": "node",
"args": ["/absolute/path/to/mux/dist/index.js"]
}
}
}