A CLI tool that makes MCP server management across Claude Desktop, Cursor, and more dead simple.
Installation • Quick Start • Available Servers • Supported MCP Clients
| Command | Description |
|---|---|
search <keyword> |
Search for available MCP servers matching the keyword |
info <server-name> |
Display detailed information about a specific server |
install <server-name> [--client=claude-desktop|cursor|claude-code] |
Install an MCP server for a specific client |
uninstall <server-name> [--client=claude-desktop|cursor|claude-code] |
Remove an installed server |
list |
List all installed MCP servers |
config path [--client=claude-desktop|cursor|claude-code] |
Show current client config file path |
config set-path <new-path> [--client=claude-desktop|cursor|claude-code] |
Set a new path for the client config file |
| Server | Description | Dependencies |
|---|---|---|
| Playwright | Browser automation server for web interactions | Node.js, npm |
| Filesystem | File system operations server for local file access | Node.js, npm |
| Fetch | Server for making HTTP requests | Docker |
| Git | Server for Git operations | Docker |
| GitHub | Server for GitHub API operations | Docker |
| Memory | Server for managing Claude's memory | Docker |
Currently supports:
- ✅ Claude Desktop (default client)
- ✅ Cursor
- ✅ Claude Code
- 🔍 Smart server discovery and search
- 🔒 Secure configuration management
- 🔄 Automatic dependency checking
- 🛡️ Client-specific installation options
- 📝 Detailed server information and documentation
For users:
pip install mcp-managerFor developers:
# Clone the repository
git clone https://github.com/nstebbins/mcp-manager.git
cd mcp-manager
# Install dependencies and development tools
poetry install
pre-commit install # Install git hooksWe maintain high code quality standards through automated checks:
# Run all pre-commit hooks
pre-commit run --all-files
# Format code
poetry run ruff format .
# Run linter
poetry run ruff check .
# Run tests
poetry run pytestThe project uses pytest for testing. Run the test suite with:
poetry run pytestContributions are welcome! Please feel free to submit a Pull Request.
