@cnbcool/mcp-server 0.3.0-beta.2 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/README.md +4 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
## 0.3.0 (April 23, 2025)
|
|
2
|
+
|
|
3
|
+
### New Features
|
|
4
|
+
|
|
5
|
+
- Supports list user's own workspaces
|
|
6
|
+
- Supports delete user's own workspace
|
|
7
|
+
|
|
8
|
+
### Refactor
|
|
9
|
+
|
|
10
|
+
- Adjust code structure
|
|
11
|
+
|
|
12
|
+
## 0.2.0 (April 11, 2025)
|
|
13
|
+
|
|
14
|
+
### Refactor
|
|
15
|
+
|
|
16
|
+
- Adjust code structure
|
|
17
|
+
|
|
18
|
+
## 0.1.2 (April 9, 2025)
|
|
19
|
+
|
|
20
|
+
### Documents
|
|
21
|
+
|
|
22
|
+
- Modify README.md
|
|
23
|
+
|
|
1
24
|
## 0.1.1 (March 25, 2025)
|
|
2
25
|
|
|
3
26
|
### New Features
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cnbcool/mcp-server",
|
|
3
3
|
"description": "CNB MCP Server. A comprehensive MCP server that provides seamless integration to the CNB's API(https://cnb.cool), offering a wide range of tools for repository management, pipelines operations and collaboration features",
|
|
4
|
-
"version": "0.3.0
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"cnb-mcp-server": "dist/index.js"
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
"type": "module",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "tsc",
|
|
12
|
+
"watch": "tsc --watch",
|
|
12
13
|
"start": "node dist/index.js",
|
|
13
14
|
"prepare": "husky",
|
|
14
15
|
"lint": "eslint src",
|