-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "alibabacloud-devops-mcp-server",
"version": "0.3.19",
"description": "MCP Server for using the alibabacloud-devops API: allows AI assistants to directly participate in development collaboration, helping teams optimize development processes and improve efficiency.",
"type": "module",
"license": "Apache-2.0",
"author": {
"name": "Yunxiao",
"email": "liyebin.lyb@alibaba-inc.com",
"url": "https://github.com/aliyun/alibabacloud-devops-mcp-server"
},
"homepage": "https://github.com/aliyun/alibabacloud-devops-mcp-server.git",
"bin": {
"alibabacloud-devops-mcp-server": "dist/index.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/aliyun/alibabacloud-devops-mcp-server.git"
},
"keywords": [
"alibaba-cloud",
"aliyun",
"devops",
"mcp",
"ai",
"open api",
"devops-mcp"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"watch": "tsc --watch",
"start": "node dist/index.js",
"start:sse": "node dist/index.js --sse"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"universal-user-agent": "^7.0.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.22.3"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^22.13.10",
"shx": "^0.3.4",
"typescript": "^5.9.3"
}
}