-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.68 KB
/
package.json
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "alibabacloud-dataworks-mcp-server",
"version": "1.0.41",
"description": "DataWorks MCP Server: Export the DataWorks Open API to MCP Server, allowing clients that can run MCP Server to use DataWorks Open API through AI.",
"main": "build/index.js",
"module": "build/index.js",
"type": "module",
"icon": "icon.png",
"bin": {
"alibabacloud-dataworks-mcp-server": "./build/index.js"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"start": "pnpm run build; REGION=cn-shanghai node build/index.js",
"dev": "pnpm run build; npx @modelcontextprotocol/inspector -e NODE_ENV=development -e REGION=cn-shanghai -e ALIBABA_CLOUD_ACCESS_KEY_ID=your_aliyun_key_id -e ALIBABA_CLOUD_ACCESS_KEY_SECRET=your_aliyun_key_secret node build/index.js",
"restart": "pnpm run build; REGION=cn-shanghai node build/index.js",
"pre-start": "pnpm run build; REGION=cn-shanghai NODE_ENV=development VERBOSE=true node build/index.js"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git@github.com:aliyun/alibabacloud-dataworks-mcp-server.git"
},
"keywords": [
"alibaba",
"aliyun",
"cloud",
"computing",
"dataworks",
"big data",
"mcp",
"ai",
"open api",
"dataworks-mcp"
],
"author": "DataWorks",
"license": "Apache-2.0",
"dependencies": {
"@alicloud/credentials": "2.4.2",
"@alicloud/dataworks-public20240518": "^6.0.2",
"@alicloud/openapi-client": "^0.4.13",
"@alicloud/openapi-util": "^0.3.2",
"@alicloud/tea-typescript": "^1.8.0",
"@alicloud/tea-util": "^1.4.10",
"@modelcontextprotocol/sdk": "^1.5.0",
"@modelcontextprotocol/server-filesystem": "2025.3.28",
"bignumber.js": "^9.1.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.7",
"express": "4.17.1",
"lodash": "^4.17.21",
"lossless-json": "^4.0.2",
"node-fetch": "3.3.2",
"openai": "^4.77.0",
"path": "^0.12.7",
"uuid": "9.0.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@modelcontextprotocol/inspector": "^0.6.0",
"@types/bignumber.js": "^5.0.4",
"@types/lodash": "^4.17.16",
"@types/node": "^22.13.4",
"tailwindcss": "^3.0.0",
"typescript": "^5.7.3"
},
"resolutions": {
"@alicloud/credentials": "2.4.2",
"uuid": "9.0.1"
},
"packageManager": "pnpm@9.14.2",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"homepage": "https://github.com/aliyun/alibabacloud-dataworks-mcp-server.git",
"bugs": {
"url": "https://github.com/aliyun/alibabacloud-dataworks-mcp-server/issues",
"mail": ""
},
"tnpm": {
"lockfile": "enable",
"mode": "npm"
}
}