Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-server-devops": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP (Model Context Protocol) 服务器,用于对接简单云(Ezone)DevOps 平台,为 Cursor、Cherry Studio 等 AI 工具提供接口能力。
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops
MCP server for using the GitLab API
Yunxiao MCP Server provides AI assistants with the ability to interact with the Yunxiao platform. It provides a set of tools that interact with Yunxiao's API, allowing AI assistants to manage Codeup repository, Project, Pipeline, Packages etc.
Enhanced MCP server for GitLab: group projects listing and activity tracking
MCP Server for kubernetes management commands
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Devops and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP (Model Context Protocol) 服务器,用于对接简单云(Ezone)DevOps 平台,为 Cursor、Cherry Studio 等 AI 工具提供接口能力。
mcp-server-devops/
├── pom.xml # Maven 配置
├── README.md # 项目说明文档
├── IFLOW.md # 项目开发文档
├── src/
│ ├── main/
│ │ ├── java/cn/clenarch/mcp/
│ │ │ ├── McpServerApplication.java # 启动类
│ │ │ ├── client/
│ │ │ │ ├── EzoneApiClient.java # Ezone API 客户端
│ │ │ │ └── McpClientExample.java # 客户端调用示例
│ │ │ ├── config/
│ │ │ │ └── EzoneApiConfig.java # Ezone API 配置类
│ │ │ ├── controller/ # 控制器
│ │ │ ├── dto/ # 数据传输对象
│ │ │ │ ├── code/ # 代码库相关 DTO
│ │ │ │ ├── pipeline/ # 流水线相关 DTO
│ │ │ │ ├── project/ # 项目相关 DTO
│ │ │ │ └── registry/ # 镜像源相关 DTO
│ │ │ ├── prompts/
│ │ │ │ └── DevOpsPrompts.java # DevOps 提示词工具
│ │ │ ├── resources/
│ │ │ │ └── ApiDocsResource.java # API 文档资源
│ │ │ └── tools/ # MCP 工具实现
│ │ │ ├── CodeTools.java # 代码库管理工具
│ │ │ ├── PipelineTools.java # 流水线管理工具
│ │ │ ├── ProjectTools.java # 项目管理工具
│ │ │ └── RegistryTools.java # 镜像源管理工具
│ │ └── resources/
│ │ └── application.yml # 应用配置
│ └── test/
│ └── java/cn/clenarch/mcp/tools/
│ ├── PipelineToolsTest.java # 流水线工具测试
│ └── ProjectToolsTest.java # 项目工具测试
└── docs-api/ # Ezone 接口文档
└── docs-api-1.0.0/
├── ezAdmin.md # 后台管理
├── ezBpm.md # 流程审批
├── ezCode.md # 代码库管理
├── ezDeploy.md # 主机部署
├── ezDoc.md # 文档管理
├── ezK8s.md # K8S 管理
├── ezPackage.md # 制品库管理
├── ezPipeline.md # 流水线管理
├── ezProject.md # 项目管理
├── ezResource-Manager.md # 服务集成
├── ezScan.md # 代码扫描
└── ezTest.md # 测试管理
客户无需自己编译,直接下载发布包即可。
# 下载发布包
wget https://github.com/li7hai26/mcp-server-devops/releases/download/v1.0.0/mcp-server-devops-1.0.0-docker.tar.gz
# 解压
tar -xzf mcp-server-devops-1.0.0-docker.tar.gz
cd docker-release
# 启动服务
./start.sh
# 查看日志
docker logs -f mcp-server-devops
# 停止服务
./stop.sh
# 拉取镜像
docker pull cleanarch/mcp-server-devops:1.0.0
# 启动服务
docker-compose up -d
# 查看日志
docker-compose logs -f
# 停止服务
docker-compose down
# 下载发布包
wget https://github.com/li7hai26/mcp-server-devops/releases/download/v1.0.0/mcp-server-devops-1.0.0-binary.tar.gz
# 解压
tar -xzf mcp-server-devops-1.0.0-binary.tar.gz
cd mcp-server-devops-1.0.0-binary
# 启动服务
./scripts/start-binary.sh
# 查看日志
tail -f logs/mcp-server.log
# 停止服务
./scripts/stop-binary.sh
开发者需要克隆代码库并进行本地开发。
# 克隆代码库
git clone https://github.com/li7hai26/mcp-server-devops.git
cd mcp-server-devops
# 构建项目
./scripts/build/build-dev.sh
# 启动服务
./scripts/start/start-dev.sh
注意: Ezone API 认证信息现在通过 MCP 客户端传递,无需在服务器端配置。
export EZONE_BASE_URL=https://srih.ezone.work
export EZONE_ACCESS_TOKEN=default_token
export EZONE_COMPANY_NAME=default
export EZO
... [View full README on GitHub](https://github.com/li7hai26/mcp-server-devops#readme)