OpenMCP CLI Overview
OpenMCP CLI is focused on three top-level command groups:
gateway: start/stop/check the Gateway service.webui: start/stop/check the Web UI service.mcp: connect to MCP servers and invoke MCP protocol operations.
Quick Start
bash
# 1) Start Gateway first
omc gateway start -p 8282
# 2) Start Web UI (default static hosting mode)
omc webui start -p 8283 -g 8282
# 3) Check status
omc gateway status -p 8282
omc webui status -p 8283 -g 8282Key Behavior Changes
webuinow requires subcommands (run | start | status | stop).webuiandgatewayare decoupled.webuiwill not auto-start/stopgateway.webuidefaults to production static hosting. UseOPENMCP_WEB_DEV=1to enable Vite dev mode.status/stopare robust with PID + port probing + health checks.- Removed legacy top-level commands (especially
rpc).