mcp-serverman: A MCP Server Configuration Manager
a cli/mcp server tool for managing mcp server json config file with version control, profiles and multi-client support
Overview
mcp-serverman is a command-line tool designed for managing MCP server configurations with features like version control, profiles, and multi-client support.
To use mcp-serverman, install it via pip and run commands in the terminal to manage your MCP server configurations.
- Command-line interface for easy management of MCP server configurations - Version control for tracking changes - Support for multiple client configurations - Profile management for different server setups
- Managing configurations for multiple MCP servers.
- Keeping track of changes in server settings with version control.
- Setting up different profiles for various server environments.
Add to your AI client
Use these steps to connect mcp-serverman: A MCP Server Configuration 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-serverman-benhaotang": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-serverman-benhaotang"
]
}
}
}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-serverman-benhaotang": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-serverman-benhaotang"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-serverman-benhaotang": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-serverman-benhaotang"
]
}
}
}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-serverman-benhaotang": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-serverman-benhaotang"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-serverman-benhaotang": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-serverman-benhaotang"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-serverman-benhaotang": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-serverman-benhaotang"
]
}
}
}FAQ
Is mcp-serverman stable?
The tool is still in development and may not be stable; users are advised to back up configurations before making changes.
What platforms does mcp-serverman support?
It is available on Windows, Linux, and MacOS.
How can I install mcp-serverman?
You can install it using pip with the command `pip install mcp-serverman`.