Skip to content

Commit fb0122d

Browse files
authored
Deployment: Dockerfile and Smithery config (#6)
1 parent 93b5c55 commit fb0122d

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config
12
FROM node:22.12-alpine AS builder
23

34
# 复制项目文件

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# alibabacloud-devops-mcp-server
2+
[![smithery badge](https://smithery.ai/badge/@aliyun/alibabacloud-devops-mcp-server)](https://smithery.ai/server/@aliyun/alibabacloud-devops-mcp-server)
3+
24
Yunxiao 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.
35

46
## Features
@@ -75,6 +77,14 @@ alibabacloud-devops-mcp-server integrates various tools, including:
7577

7678
![The personal token authorization page](https://agent-install-beijing.oss-cn-beijing.aliyuncs.com/alibabacloud-devops-mcp-server/img_8.png)
7779

80+
### Installing via Smithery
81+
82+
To install Yunxiao DevOps Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@aliyun/alibabacloud-devops-mcp-server):
83+
84+
```bash
85+
npx -y @smithery/cli install @aliyun/alibabacloud-devops-mcp-server --client claude
86+
```
87+
7888
### Install Yunxiao MCP server via MCP marketplace
7989
The MCP market built into Lingma (AlibabaCloud Tongyi Lingma) has already provided the Yunxiao MCP service. To install it, simply enter the MCP market in Lingma and search for "Yunxiao DevOps", then click install.
8090

smithery.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Smithery configuration file: https://smithery.ai/docs/build/project-config
2+
3+
startCommand:
4+
type: stdio
5+
commandFunction:
6+
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
7+
|-
8+
(config) => ({ command: 'node', args: ['dist/index.js'], env: { YUNXIAO_ACCESS_TOKEN: config.yunxiaoAccessToken } })
9+
configSchema:
10+
# JSON Schema defining the configuration options for the MCP.
11+
type: object
12+
required:
13+
- yunxiaoAccessToken
14+
properties:
15+
yunxiaoAccessToken:
16+
type: string
17+
description: Alibaba Cloud Yunxiao personal access token
18+
exampleConfig:
19+
yunxiaoAccessToken: your_token_here

0 commit comments

Comments
 (0)