# sysIntd **Repository Path**: GS-Stephen_Curry/intelligence-d ## Basic Information - **Project Name**: sysIntd - **Description**: openEuler IntelligenceD - **Primary Language**: Python - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 5 - **Created**: 2025-09-24 - **Last Updated**: 2025-10-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # IntelligenceD 负责mcp的管理,支持mcp注册发现安装等全生命周期管理 ## 远端mcp servers https://gitee.com/cui-gaoleng/mcp_center/blob/master/config/private/lscpu/config.toml https://gitee.com/zxstty/mcp_center/blob/master/service/fallocate-server.service ## 依赖 1 安装mcp center[https://gitee.com/zxstty/mcp_center] 2 代码仓拷贝到"/usr/lib/euler-copilot-framework/mcp_center" ## 安装 1 下载代码到本地[https://gitee.com/GS-Stephen_Curry/intelligence-d] 2 执行run.sh脚本完成项目部署安装 3 命令行执行sysint_ctl -h 验证是否安装成功 ## 支持的命令 ![支持的命令](./images/help.png) **列举已安装服务** sysint_ctl ls sysint_ctl ls -v ```shell (py11) [root@localhost intelligence-d]# sysint_ctl ls status: success. Found 1 server(s) in local env: zip Tip: Use 'sysint_ctl ls -v' to see detailed server configurations ``` **查找指定服务** sysint_ctl search ```shell (py11) [root@localhost intelligence-d]# sysint_ctl search lscpu status: success. Searching in MCP Center for mcp server 'lscpu' ls lscpu Found 2 mcp servers in MCP Center. ``` **安装指定服务** sysint_ctl install ```shell (py11) [root@localhost intelligence-d]# sysint_ctl install lscpu MCP Server Name: lscpu Description: cpu架构等静态信息收集mcp Install this server? [y/n]: y Installing server... status: success. Installed mcp server: lscpu ``` **查看指定服务信息** sysint_ctl info ```shell (py11) [root@localhost intelligence-d]# sysint_ctl info lscpu status: success. Showing information for MCP server: lscpu Server Name: lscpu Server Description: cpu架构等静态信息收集mcp Server Information: command: python3 args: servers/lscpu/src/server.py url: http://0.0.0.0:12100/sse mcpType: sse env: {} headers: {} ``` **启动指定服务** sysint_ctl start ```shell (py11) [root@localhost intelligence-d]# sysint_ctl start lscpu status: success. Prepare start server 'lscpu' PYTHONPATH: /usr/lib/euler-copilot-framework/mcp_center 'lscpu' has installed. Start command: ['python3', 'servers/lscpu/src/server.py'] Uvicorn running on http://0.0.0.0:12100/sse. 'lscpu' start up ok, process id: 2781212. ``` **停止指定服务** sysint_ctl stop ```shell (py11) [root@localhost intelligence-d]# sysint_ctl stop lscpu status: success. Prepare stop server 'lscpu'. Find target process, pid: 2783051, startup cmd: python3 servers/lscpu/src/server.py Sending SIGTERM signal to pid: 2783051 Server lscpu has been stopped. ``` **卸载指定服务** sysint_ctl uninstall ```shell (py11) [root@localhost intelligence-d]# sysint_ctl uninstall lscpu Uninstall lscpu server? [y/n]: y Uninstalling server... status: success. mcp server has been removed! ``` ## TODO 0 install的辅助日志补充 1 mcp center子仓引入,git submodule... ```git clone --recurse-submodules https://gitee.com/zxstty/mcp_center``` 2 构建agent,和openeuler intelligence联动 3 外部三方mcp server的安装,运行,卸载