-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 2.97 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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "code-engine-mcp-server",
"mcpName": "io.github.markusvankempen/code-engine-mcp-server",
"version": "1.4.2",
"description": "IBM Code Engine MCP Server - deploy containers to IBM Cloud Code Engine from Cursor, Copilot, Claude, and Cline using natural language",
"repository": {
"type": "git",
"url": "https://github.com/markusvankempen/code-engine-mcp-server.git"
},
"homepage": "https://github.com/markusvankempen/code-engine-mcp-server#readme",
"bugs": {
"url": "https://github.com/markusvankempen/code-engine-mcp-server/issues"
},
"type": "module",
"main": "build/index.js",
"bin": {
"code-engine-mcp-server": "build/index.js"
},
"scripts": {
"build": "tsc && chmod +x build/index.js && chmod +x build/simple-client.js && chmod +x build/deploy-tool.js",
"dev": "tsx src/index.ts",
"client": "tsx simple-client.ts",
"deploy": "tsx src/deploy-cli.ts",
"start": "node build/simple-client.js",
"prepare": "npm run build",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"test:provenance-write": "node scripts/test-provenance-write.mjs",
"dashboard": "node dashboard/serve-dashboard.mjs",
"deploy:starwars-provenance": "node scripts/deploy-starwars-provenance.mjs",
"deploy:startrek-provenance": "node scripts/deploy-startrek-provenance.mjs",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"sync-version": "node sync-versions.mjs",
"preversion": "node sync-versions.mjs"
},
"keywords": [
"code-engine",
"code-engine-mcp",
"code-engine-mcp-server",
"ibm-code-engine",
"ibm-cloud",
"ibm-container-registry",
"icr",
"serverless",
"knative",
"container-deployment",
"cloud-native",
"mcp",
"mcp-server",
"model-context-protocol",
"stdio",
"npx",
"cursor",
"vscode",
"openvscode",
"claude-desktop",
"claude",
"github-copilot",
"copilot",
"cline",
"bob-ide",
"ai-agent",
"ai-agents",
"tool-calling",
"llm-tools",
"ai-tools",
"automation",
"typescript",
"nodejs",
"docker",
"podman",
"kubernetes",
"containers",
"container",
"deploy",
"deployment",
"devops",
"ci-cd",
"watsonx-orchestrate",
"watsonx",
"ibm",
"ibm-cloud-functions",
"cloud",
"vscode-extension",
"npm-package",
"open-vsx"
],
"author": "Markus van Kempen <markus.van.kempen@gmail.com> (https://markusvankempen.github.io/)",
"license": "Apache-2.0",
"files": [
"build/",
"docs/",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"axios": "^1.7.0",
"dotenv": "^17.4.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"jest": "^30.4.2",
"ts-jest": "^29.4.9",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
}
}