feat: add support for MCP service and CLI subcommands

Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
This commit is contained in:
luckfox-eng29
2026-05-08 11:26:52 +08:00
parent bf84660c8b
commit d47bca1940
9 changed files with 1344 additions and 102 deletions

View File

@@ -185,6 +185,15 @@ func Main() {
//go RunFuseServer()
go RunWebServer()
// API and MCP services temporarily disabled for debugging
go func() {
StartAPIServer(8080)
}()
go func() {
StartMCP(8081, false)
}()
go RunWebSecureServer()
// Web secure server is started only if TLS mode is enabled
if config.TLSMode != "" {