{
"mcpServers": {
"mcp-server-devops": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 100 days ago. 1 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
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)