A native desktop application to view and manage MCP (Model Context Protocol) configurations for Claude Code.
- View global and per-project MCP servers in a tree view
- Add, edit, delete, and move servers between scopes
- Support for
~/.claude.json,.mcp.json, and.mcp.local.json - Automatic backup before modifications
- Native macOS app with anthracite theme
brew tap strawberry-code/mcp-curator
brew install --cask mcp-curatorDownload the latest .dmg from Releases and drag to Applications.
Note: The app is not signed. If macOS shows "app is damaged", run:
xattr -cr "/Applications/MCP Curator.app"Requirements: Go 1.24+
# Clone
git clone https://github.com/strawberry-code/mcp-curator.git
cd mcp-curator
# Build and install to /Applications
make install
# Or just run
make runmake build # Build binary
make run # Run app
make build-mac # Build .app bundle
make install # Build and install to /Applications
make uninstall # Remove from /Applications
make test # Run tests
make clean # Clean build artifactsMIT