If you were set up with the original Python-based local server (pip install coppermind-cmo or uvx coppermind-cmo, formerly called Coppermind), that local server conflicts with the new remote gateway at api.coppermind.app. Follow these steps to remove the old installation and switch to the remote version.
Step 1: Remove from Claude Desktop
- Open Claude Desktop.
- Go to Settings (gear icon) > Connectors (or MCP Servers).
- Find the Armbrain (or Coppermind) entry. Click the three-dot menu and select Remove or Delete.
- Also check the config file for leftover entries:
- Mac:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- Open the file in a text editor. If you see a
"coppermind-cmo"key inside"mcpServers", delete that entire block. Save the file. - Quit and reopen Claude Desktop.
Step 2: Remove from Claude Code
- List your configured MCP servers:
```
claude mcp list
```
- If
coppermind-cmoappears, remove it:
```
claude mcp remove coppermind-cmo
```
- Verify it is gone by checking
~/.claude/settings.jsonfor any remainingcoppermind-cmoreferences. Remove them if found.
Step 3: Uninstall the Python Package
Run whichever command matches how you originally installed it:
pip uninstall coppermind-cmo
or
pipx uninstall coppermind-cmo
If neither command recognizes the package, it may already be removed.
Optionally, clean up any leftover config directory:
rm -rf ~/.config/coppermind-cmo/
Step 4: Verify Clean State
- Restart Claude Desktop and/or start a new Claude Code session.
- Confirm the old local server no longer appears in your connectors or MCP server list.
- Only the new remote gateway (
api.coppermind.app) should be present.
If you do not yet have the new remote gateway configured, see the Installation and Setup guide.