https://github.com/daswer123/mcpo-control-panel
MCPO Control Panel
A web-based control panel designed to simplify the management of
MCP-to-OpenAPI (mcpo) instances and
their server configurations. It provides a user-friendly UI and an API for
interacting with mcpo.
Demo
https://github.com/user-attachments/assets/dc3f11de-82f6-42ee-a72f-7181c9af0f45
Key Features
- Server Definition Management:
- Create, Read, Update, and Delete server definitions (for
stdio,sse,streamable_httptypes). - Easily toggle servers as enabled/disabled for inclusion in the
mcpoconfiguration. - Intuitive forms for specifying commands, arguments, environment variables, and URLs.
- Create, Read, Update, and Delete server definitions (for
- Bulk Server Operations:
- Add multiple server definitions at once by pasting JSON content.
- Supports various JSON formats (object with
mcpServers, direct name-to-config map, list of server objects). - Two-step bulk add process:
- Analyze: Preview valid new servers, existing ones, and invalid entries from your JSON.
- Confirm: Add only the validated new servers to the database.
- Automatic de-adaptation of Windows-specific commands (e.g.,
cmd /c npx ...->npx ...).
- MCPO Process Control:
- Start, stop, and restart the
mcpoprocess directly from the UI. - View the real-time status of the
mcpoprocess (Running, Stopped, Error). - "Apply and Restart" functionality: Generates the
mcpoconfiguration from current server definitions and then restartsmcpo.
- Start, stop, and restart the
- Log Viewing:
- Display the latest logs from the
mcpoprocess log file. - Configurable auto-refresh for logs.
- Manual refresh and auto-scroll options.
- Display the latest logs from the
- MCPO Settings Configuration:
- Manage
mcpostartup parameters (port, API key usage, config file path, log file path). - Configure UI behavior (log refresh interval).
- Setup and manage health check parameters for
mcpo.
- Manage
- Tool Aggregation & Viewing:
- Dynamically fetches and displays a list of available tools (server paths and
summaries) from a running
mcpoinstance by querying its OpenAPI specifications. - Provides the base URL for constructing tool invocation links.
- Dynamically fetches and displays a list of available tools (server paths and
summaries) from a running
- Health Checks & Auto-Restart:
- Background health monitoring of the
mcpoprocess using a built-in echo server. - Configurable check interval, failure attempts, and retry delays.
- Optional automatic restart of
mcpoif health checks fail consecutively.
- Background health monitoring of the
- Dynamic Configuration Generation:
- Generates the
mcp_generated_config.jsonfile formcpobased on enabled server definitions. - Provides options to download the standard configuration or a Windows-adapted
version (which wraps commands like
npx,uvx,dockerwithcmd /c ...).
- Generates the
- Modern Web UI:
- Built with FastAPI, Jinja2 templates, and HTMX for a responsive and dynamic user experience.
- Utilizes Materialize CSS for styling.
- Persistent storage using an SQLite database (via SQLModel).
Bundled Dependencies
To enhance reliability and enable deployment in offline or air-gapped environments, the MCPO Control Panel now bundles its core external frontend assets:
- Materialize CSS & JavaScript
- Google Material Icons (font and CSS)
- htmx.org JavaScript
This means the application does not rely on external CDNs for these resources, ensuring it remains fully functional without internet access after initial installation.
Installation
It's recommended to use uv for installation if available, as it's generally
faster.
Method 1: Using uv (Recommended)
uv pip install mcpo-control-panel
Method 2: Using pip (Traditional)
Prerequisites
- Python 3.11 or higher.
pip install mcpo-control-panel
Method 3: From Source (for development)
-
Clone the repository:
git clone https://github.com/daswer123/mcpo-control-panel.git cd mcpo-control-panel -
Install in editable mode (this will also install dependencies):
pip install -e .Method 4: Using Docker
You can also run the MCPO Control Panel using Docker. This is a convenient way to run the application in an isolated environment.
-
Pull the ready-made image from Docker Hub:
docker pull daswer123/mcpo-control-panel:latest -
Or build the Docker image yourself: Ensure you have
Dockerfileanddocker-compose.ymlin your project root.docker compose build -
Run the application using Docker Compose:
docker compose upThis will start the MCPO Control Panel, and it will be accessible at
http://localhost:8083/uiby default. The data will be persisted in a./datavolume on your host machine.You can customize the port and data directory in the
docker-compose.ymlfile if needed. Environment variables likeMCPO_MANAGER_HOST,MCPO_MANAGER_PORT, andMCPO_MANAGER_DATA_DIRare also respected by the Docker container.
-
Running the Application
Once installed, you can run the MCPO Control Panel.
Using python -m (works with pip or uv installations):
python -m mcpo_control_panel [OPTIONS]
Using the installed script (if your Python scripts directory is in PATH):
mcpo-control-panel [OPTIONS]
Common Options:
--host TEXT: Host to bind the server to. (Default:127.0.0.1)- Environment variable:
MCPO_MANAGER_HOST
- Environment variable:
--port INTEGER: Port to bind the server to. (Default:8083)- Environment variable:
MCPO_MANAGER_PORT
- Environment variable:
--workers INTEGER: Number of Uvicorn workers. (Default:1)- Environment variable:
MCPO_MANAGER_WORKERS
- Environment variable:
--reload: Enable auto-reload (for development).--config-dir TEXT: Directory for storing MCPO manager data (SQLite database, PID files, generated configs, settings).- Default:
~/.mcpo_manager_data(e.g.,C:\Users\YourUser\.mcpo_manager_dataon Windows or/home/youruser/.mcpo_manager_dataon Linux). - Environment variable:
MCPO_MANAGER_DATA_DIR
- Default:
Example:
python -m mcpo_control_panel --port 8083 --reload --config-dir "/path/to/my/mcpo-data"
Example using uvx (executes the command in an isolated environment with the
specified package):
This is particularly useful for quick runs or testing without altering your global/current environment.
uvx --with mcpo-control-panel python -m mcpo_control_panel --host 0.0.0.0 --port 8934 --config-dir test
Or using environment variables:
export MCPO_MANAGER_PORT=8083
export MCPO_MANAGER_DATA_DIR="/path/to/my/mcpo-data"
python -m mcpo_control_panel --reload
The application will create the specified --config-dir if it doesn't exist.
All application data, including the SQLite database (mcp_manager_data.db),
settings file (mcpo_manager_settings.json), generated MCPO configuration
(mcp_generated_config.json), and the mcpo process PID file, will be stored
in this directory.
Deployment Considerations
Reverse Proxy Configuration
The MCPO Control Panel can be effectively run behind a reverse proxy. Here's how to configure it:
-
Proxy Headers: The application utilizes
ProxyHeadersMiddlewarefrom Uvicorn, which automatically respectsX-Forwarded-ProtoandX-Forwarded-Hostheaders. It's crucial to ensure your reverse proxy (e.g., Nginx, Apache, Traefik) is configured to pass these headers correctly.X-Forwarded-Proto: This header should reflect the protocol used by the client to connect to the proxy. If SSL termination occurs at the proxy (i.e., clients connect via HTTPS), the proxy must setX-Forwarded-Proto: https.X-Forwarded-Host: This header should reflect the original host requested by the client.
-
Base Path / Subpath (
root_path): If the MCPO Control Panel is served under a specific subpath of a domain (e.g.,https://example.com/mcpmanager/), you need to configure theroot_pathsetting within the application.- This setting is available on the "MCPO Settings" page in the UI.
- Set
root_pathto the subpath, including the leading slash (e.g.,/mcpmanager). - If the application is served at the root of a domain (e.g.,
https://mcp.example.com/orhttp://localhost:8083/), theroot_pathsetting should be left empty (which is its default value).
The application uses this
root_pathto correctly generate all internal links and serve static assets.
General Proxy Reminder: Always ensure your reverse proxy is configured to
set X-Forwarded-Proto and X-Forwarded-Host headers appropriately and to
correctly proxy WebSocket connections if any part of the application were to use
them (though MCPO Control Panel primarily uses HTTP/HTMX).
Accessing the UI
Once the server is running, open your web browser and navigate to:
http://<host>:<port>/ui
For example, if running with default settings: http://127.0.0.1:8083/ui
Configuration
Most configurations for the mcpo process itself (like its port, whether it
uses an API key, log file paths) and for the UI (like log auto-refresh settings,
health check parameters) are managed through the web interface on the "MCPO
Settings" page.
These settings are saved to mcpo_manager_settings.json within the
MCPO_MANAGER_DATA_DIR_EFFECTIVE (the directory specified by --config-dir or
its default).
License
This project is licensed under the MIT License