阿里云MCP服务器 是 AI Skill Hub 本期精选MCP工具之一。综合评分 8.0 分,整体质量较高。我们强烈推荐将其纳入你的 AI 工具库,帮助提升工作效率。
阿里云MCP服务器 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
阿里云MCP服务器 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/aliyun/alibabacloud-devops-mcp-server
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"---mcp---": {
"command": "npx",
"args": ["-y", "alibabacloud-devops-mcp-server"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 阿里云MCP服务器 执行以下任务... Claude: [自动调用 阿里云MCP服务器 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"___mcp___": {
"command": "npx",
"args": ["-y", "alibabacloud-devops-mcp-server"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
AlibabaCloud Devops MCP Server provides AI assistants with the ability to interact with the Yunxiao platform, enabling them to read work item contents in projects, automatically write code after understanding requirements, and submit code merge requests. Enterprise development teams can use it to assist with code reviews, optimize task management, reduce repetitive operations, and thus focus on more important innovation and product delivery.
alibabacloud-devops-mcp-server provides the following capabilities for AI assistants:
organization-management: Organization management tools (organization list, organization details, department information, organizational roles, member information, etc.)code-management: Code repository management tools (repository management, branch management, merge request management, file tree, etc.)project-management: Project management tools (project management, work item management, work item fields, work item comments, time tracking, etc.)pipeline-management: Pipeline management tools (pipeline list, pipeline configuration, resource management, tag management, deployment management, etc.)application-delivery: Application delivery tools (deployment order management, application management, application tags, variable group management, etc.)packages-management: Artifact repository management tools (artifact repositories, artifact lists, etc.)test-management: Test management tools (test case management, test case directories, test plans, test results, etc.)
The MCP market built into Lingma (AlibabaCloud Tongyi Lingma) has already provided the AlibabaCloud Devops MCP service. To install it, simply enter the MCP market in Lingma and search for "Yunxiao DevOps", then click install.
---
cp .env.example .env # set YUNXIAO_ACCESS_TOKEN
docker compose up -d
Client URL: http://localhost:3000/sse (SSE) or http://localhost:3000/mcp (Streamable HTTP)
Stdio mode is the simplest and most common way, suitable for most MCP clients (like Cursor, Claude Desktop, iFlow, etc.). No Docker installation required, just run via npx.
Add the following configuration to your MCP client configuration file:
{
"mcpServers": {
"yunxiao": {
"command": "npx",
"args": [
"-y",
"alibabacloud-devops-mcp-server"
],
"env": {
"YUNXIAO_ACCESS_TOKEN": "<YOUR_TOKEN>"
}
}
}
}
Note: - Replace<YOUR_TOKEN>with your Yunxiao access token - The-yflag automatically confirms installation without manual confirmation - By default the tool calls the Yunxiao Central Station OpenAPI (https://openapi-rdc.aliyuncs.com); no extra configuration is required - If you are on a Region edition (organization-specific domain), set an additional environment variableYUNXIAO_API_BASE_URLto your Yunxiao instance URL, e.g.https://your-org.devops.aliyuncs.com. See the Configuring Region Edition section above for details - This method uses stdio mode, communicating with the MCP client via standard input/output
Stdio:
{
"mcpServers": {
"yunxiao": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "YUNXIAO_ACCESS_TOKEN", "build-steps-public-registry.cn-beijing.cr.aliyuncs.com/build-steps/alibabacloud-devops-mcp-server:latest"],
"env": { "YUNXIAO_ACCESS_TOKEN": "<YOUR_TOKEN>" }
}
}
}
SSE: http://localhost:3000/sse
Streamable HTTP: http://localhost:3000/mcp
Pass credentials via query parameter or header:
http://localhost:3000/mcp?yunxiao_access_token=YOUR_TOKEN_HERE Or request header: x-yunxiao-token: YOUR_TOKEN_HERE
Region / instance OpenAPI base:
http://localhost:3000/mcp?yunxiao_access_token=TOKEN&yunxiao_api_base_url=https%3A%2F%2Fyour-org.devops.aliyuncs.com Or request header: x-yunxiao-api-base-url: https://your-org.devops.aliyuncs.com
get_pipeline: Get pipeline detailslist_pipelines: Get pipeline listsmart_list_pipelines: Smart pipeline search with natural language time referencesgenerate_pipeline_yaml: [Pipeline Management] Generate pipeline YAML configurationcreate_pipeline_from_description: Create a pipeline from natural language descriptionupdate_pipeline: [Pipeline Management] Update pipeline YAML contentcreate_pipeline_run: Create a pipeline run instanceget_latest_pipeline_run: Get the latest pipeline run instanceget_pipeline_run: Get pipeline run detailslist_pipeline_runs: Get pipeline run listlist_pipeline_jobs_by_category: Get pipeline execution tasks by categorylist_pipeline_job_historys: Get the execution history of a pipeline taskexecute_pipeline_job_run: Manually run a pipeline taskget_pipeline_job_run_log: Get the execution logs of a pipeline joblist_service_connections: List service connections in organizationcreate_pipeline_from_description: Automatically generates YAML configuration and creates pipelineupdate_pipeline: Update an existing pipeline in Yunxiao by pipelineId. Use this to update pipeline YAML, stages, jobs, etc.create_resource_member: Create a resource memberdelete_resource_member: Delete a resource memberlist_resource_members: Get a list of resource membersupdate_resource_member: Update a resource memberupdate_resource_owner: Transfer resource ownercreate_tag: Create a tagcreate_tag_group: Create a tag grouplist_tag_groups: Get a list of tag groupsdelete_tag_group: Delete a tag groupupdate_tag_group: Update a tag groupget_tag_group: Get a tag groupdelete_tag: Delete a tagupdate_tag: Update a tagstop_vm_deploy_order: Stop VM deploy orderskip_vm_deploy_machine: Skip VM deploy machineretry_vm_deploy_machine: Retry VM deploy machineresume_vm_deploy_order: Resume VM deploy orderget_vm_deploy_order: Get VM deploy order detailsget_vm_deploy_machine_log: Get VM deploy machine loglist_package_repositories: Get package repositories details listlist_artifacts: Get artifacts details listget_artifact: Get single artifact details高质量的MCP服务器实现
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
经综合评估,阿里云MCP服务器 在MCP工具赛道中表现稳健,质量优秀。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | alibabacloud-devops-mcp-server |
| Topics | alibabacloud-devopsdevops-mcptypescript |
| GitHub | https://github.com/aliyun/alibabacloud-devops-mcp-server |
| License | Apache-2.0 |
| 语言 | TypeScript |
收录时间:2026-06-03 · 更新时间:2026-06-03 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端