Troubleshooting
claude-<name> command not found
Section titled “claude-<name> command not found”Your global binary directory isn’t on PATH. The exact location depends on your package manager, the TUI shows it when an instance is created.
Common locations:
| Runtime | Binary directory |
|---|---|
| Bun | ~/.bun/bin/ |
| npm (Linux/macOS) | ~/.local/bin/ or /usr/local/bin/ |
| pnpm | ~/.local/share/pnpm/ |
| Deno | ~/.deno/bin/ |
Fix:
# zsh (macOS default)echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.zshrcsource ~/.zshrc
# bashecho 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrcsource ~/.bashrcReplace ~/.local/bin with the actual path from your instance creation output.
Broken plugin or skill symlinks
Section titled “Broken plugin or skill symlinks”If you moved or deleted ~/.claude/, symlinks in auto-synced instances point to nothing.
Fix from TUI: Select Re-sync symlinks from the main menu. Pick the broken instance (or all).
Fix from CLI:
# Fix a specific instanceclaude-multi fix-symlinks deepseek
# Fix all instancesclaude-multi fix-symlinks --allHealth warning banner in the TUI
Section titled “Health warning banner in the TUI”A yellow or red banner at the top of the main menu means claude-multi detected problems. Press ! to open the health screen.
Common health issues:
| Problem | Cause | Fix |
|---|---|---|
| Config directory missing | Instance dir was deleted outside claude-multi | Remove the instance or recreate the directory |
| Binary not found | Wrapper script was deleted | Re-create the instance |
| Corrupted settings.json | Invalid JSON in the config file | Fix or delete the corrupted file, then recreate |
| Broken symlinks | Plugin/skill links point to missing targets | Run fix-symlinks |
| Migration failed | Config schema migration was interrupted | Health screen offers retry/restore from backup |
Ink TUI doesn’t render properly
Section titled “Ink TUI doesn’t render properly”Some terminals (older SSH clients, certain terminal emulators) don’t handle the Ink-based React TUI well.
Fix: Force the simpler prompts-based UI:
CLAUDE_MULTI_INK=false claude-multiSame flows, simpler rendering.
API key not working
Section titled “API key not working”If Claude Code can’t authenticate with your provider:
- Check the key is set:
claude-multi info <name>shows the instance’s settings - Check the base URL: Make sure you used the right provider template for your account type. Some providers (MiMo, Qwen) have separate templates for pay-per-token vs. subscription plans, using the wrong one means the wrong endpoint
- Verify the settings file: Open
~/.claude-<name>/settings.jsonand check theenvblock
# Check what's configuredcat ~/.claude-multi/deepseek/settings.json | jq .envWrong provider endpoint
Section titled “Wrong provider endpoint”Some providers use different base URLs for pay-per-token vs. subscription plans:
| Provider | Pay-per-token | Subscription |
|---|---|---|
| Xiaomi MiMo | mimo template | mimo-token template (different domain) |
| Alibaba Qwen | qwen template | qwen-coding template (different subdomain) |
| GLM (Z.ai) | No Anthropic-compatible URL | glm template (coding plan only) |
If you’re on a subscription plan but used the pay-per-token template (or vice versa), your API key won’t authenticate. Remove the instance and recreate with the correct template.
Duplicate instance name
Section titled “Duplicate instance name”Error: Instance 'deepseek' already existsInstance names must be unique. Either pick a different name or remove the existing one first:
claude-multi remove deepseekclaude-multi add deepseek --provider deepseek --api-key sk-...MCP server not working
Section titled “MCP server not working”If an MCP server fails to connect:
- Verify the config:
claude-multi mcp verifychecks that referenced executables and paths exist - Check for collisions:
claude-multi plugins check-collisions <instance> <plugin-id>, two plugins might register the same MCP server name - Inspect the config: Open
~/.claude-<name>/settings.jsonand look at themcpServersfield
Config migration failed
Section titled “Config migration failed”If a migration was interrupted:
- Check
~/.claude-multi/config.jsonformigrationStatusflags - Look for
.bakfiles in the instance directory - The health screen (press
!in the TUI) shows the specific error and offers retry or restore options
Migrations create backups before touching anything. The last 3 backup sets are kept in ~/.claude-multi/backups/.
Update check not working
Section titled “Update check not working”Update checks are opt-in. Enable them:
export CLAUDE_MULTI_UPDATE_CHECK=trueclaude-multiOr check manually:
claude-multi versionStill stuck?
Section titled “Still stuck?”- Run
claude-multi listto see all instances and their status - Run
claude-multi info <name>for detailed config of a specific instance - Check the GitHub issues for known problems
- Open a new issue with your
claude-multi versionoutput and the content of~/.claude-multi/config.json