Overview
What is MCP Server Manager?
MCP Server Manager is a backend Python application that provides both a Model Context Protocol (MCP) interface and a FastAPI web interface for managing MCP servers integrated with Claude Desktop. It is designed for users who need to register, enable/disable, test, and restart MCP servers used with Claude Desktop.
How to use MCP Server Manager?
Install Python 3.13 or higher, clone the repository, create a virtual environment, and install dependencies via pip install -r requirements.txt or pip install -e .. Run the web interface with uvicorn main:app --host 127.0.0.1 --port 8000 and open http://127.0.0.1:8000 in a browser, or run the MCP interface directly with python mcp_manager/mcp_server.py. For Claude Desktop integration, add the MCP server config to Claude’s configuration file.
Key features of MCP Server Manager
- Register and manage MCP servers in a central location
- Enable or disable MCP servers for use with Claude Desktop
- Test server commands before registration
- Restart Claude Desktop after configuration changes
- Start the FastAPI server directly from Claude via MCP
- Access functionality via both a web UI and MCP interface
Use cases of MCP Server Manager
- Manage multiple MCP server configurations for Claude Desktop
- Test MCP server commands before adding them to production
- Quickly enable or disable servers without editing configuration files
- Restart Claude Desktop automatically after making changes
- Launch the management web interface from within Claude Desktop
FAQ from MCP Server Manager
What are the prerequisites for running MCP Server Manager?
Python 3.13 or higher, pip, and Claude Desktop (for full functionality) are required.
How do I run the web interface for MCP Server Manager?
Execute uvicorn main:app --host 127.0.0.1 --port 8000, then open http://127.0.0.1:8000 in a browser. For network access, use --host 0.0.0.0.
How do I integrate MCP Server Manager with Claude Desktop?
Register your MCP servers via the web interface, enable the desired servers, and restart Claude Desktop. Also add the MCP server configuration to Claude Desktop's config file as shown in the README.
Where are logs for MCP Server Manager stored?
Logs are written to C:\Users\<username>\AppData\Local\MCPManager\MCPManager\mcp_server.log.
Can I start the FastAPI server from within Claude Desktop?
Yes, use the start_fastapi_server MCP tool, optionally specifying a custom port (e.g., start_fastapi_server port=8080).