MCP Manager
A simple GUI for managing MCP servers, for easy toggle mcp servers.
Overview
MCP Manager is a simple graphical user interface (GUI) designed for managing Model Context Protocol (MCP) servers, allowing users to easily toggle between different MCP server settings.
To use MCP Manager, download the application from its GitHub repository, install it on a compatible operating system (currently tested on MacOS), and launch the GUI to manage and configure your MCP servers.
- User-friendly GUI for managing MCP servers - Easy toggling of server settings - Powered by Tauri for a lightweight application experience
- Enabling and disabling specific MCP servers based on user requirements
- Managing server configurations for different projects utilizing MCP
- Testing MCP server functionality in various environments such as MacOS and Windows (ongoing testing)
Add to your AI client
Use these steps to connect MCP Manager in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-config-editor-kaichen": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-config-editor-kaichen"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-config-editor-kaichen": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-config-editor-kaichen"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-config-editor-kaichen": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-config-editor-kaichen"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-config-editor-kaichen": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-config-editor-kaichen"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-config-editor-kaichen": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-config-editor-kaichen"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-config-editor-kaichen": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-config-editor-kaichen"
]
}
}
}FAQ
Which operating systems does MCP Manager support?
Currently, MCP Manager is tested on MacOS, with plans for Windows support in the future.
Is MCP Manager open source?
Yes! MCP Manager is open source and licensed under the Apache License 2.0.
How can I contribute to the MCP Manager?
You can contribute by checking out the GitHub repository and following the contribution guidelines provided there.