{% extends "base.html" %} {% block title %}Server Management - MCP Manager{% endblock %} {% block page_title %}Servers & MCPO Control{% endblock %} {% block page_subtitle %}Overview of MCP server definitions and MCPO process control{% endblock %} {% block head_extra %} {% endblock %} {% block content %}
Loading status...
{{ mcpo_settings.port }}
{{ mcpo_settings.config_file_path }}
{{ mcpo_settings.log_file_path if mcpo_settings.log_file_path else 'Not Set (stdout/stderr)' }}
Toggling Manual Mode updates the setting immediately. The page will then reload.
Directly edit the content for configuration file: {{ mcpo_settings.config_file_path }}
.
A basic MCPO configuration looks like this:
{
"mcpServers": {
"my-echo-server": {
"command": "npx",
"args": ["@mcp/echo-server", "-p", "8001"],
"env": {
"LOG_LEVEL": "debug"
}
},
"my-sse-feed": {
"type": "sse",
"url": "http://localhost:9000/events"
}
}
}
Each key under mcpServers
is a unique name for your tool.
For stdio
type, provide command
, optionally args
(list of strings) and env
(object).
For sse
or streamable_http
, provide type
and url
.
Displays the content of {{ mcpo_settings.config_file_path }}
generated from UI server definitions when "Apply & Restart" is clicked.
Loading configuration content...
On | Name | Type | Details | Actions |
---|---|---|---|---|
No server definitions found. Add some? |