@canveo/mcp 0.1.1 → 0.1.3
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 +6 -2
- package/README.md +13 -2
- package/package.json +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.1.
|
|
3
|
+
## 0.1.3 - 2026-08-31
|
|
4
4
|
|
|
5
|
-
-
|
|
5
|
+
- Add `npm run release` (same release-it flow as cvback). GitHub Release triggers OIDC publish; release-it does not `npm publish` locally.
|
|
6
|
+
|
|
7
|
+
## 0.1.2 - 2026-08-31
|
|
8
|
+
|
|
9
|
+
- Switch GitHub publish to Node 24 / npm 11 with OIDC trusted publishing (`id-token: write`). A 2FA-bypass granular token cannot complete a public publish (registry PUT 404 / ghost versions).
|
|
6
10
|
- Fix `bin` paths so npm no longer rewrites them at publish time.
|
|
7
11
|
|
|
8
12
|
## 0.1.0 - 2026-08-31
|
package/README.md
CHANGED
|
@@ -91,8 +91,19 @@ This is **not** a Terraform/ECS deploy.
|
|
|
91
91
|
- Repository: `canveo-mcp`
|
|
92
92
|
- Workflow filename: `publish.yml`
|
|
93
93
|
- Allowed actions: `npm publish`
|
|
94
|
-
3.
|
|
95
|
-
|
|
94
|
+
3. From `main`, with a clean tree:
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
npm run release
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
That is the same pattern as `cvback`: `check-main` then `release-it` (bump, commit, tag `vX.Y.Z`, GitHub Release). **Do not** let release-it publish to npm; `npm.publish` is false so the **Publish npm** workflow can use OIDC (`id-token: write`). Do not add an `NPM_TOKEN` repo secret.
|
|
101
|
+
|
|
102
|
+
Non-interactive patch bump:
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
npm run release -- --ci --increment=patch
|
|
106
|
+
```
|
|
96
107
|
|
|
97
108
|
Manual first publish (2FA / OTP required):
|
|
98
109
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@canveo/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Canveo Model Context Protocol server for contract review, creation, sending, and signing. Works with any MCP client (Cursor, Claude Desktop, VS Code, and others).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,12 +41,15 @@
|
|
|
41
41
|
"scripts": {
|
|
42
42
|
"start": "node index.js",
|
|
43
43
|
"test": "vitest --run",
|
|
44
|
-
"pack:check": "npm pack --dry-run"
|
|
44
|
+
"pack:check": "npm pack --dry-run",
|
|
45
|
+
"check-main": "node scripts/checkIfCurrentGitBranchIsMain.js",
|
|
46
|
+
"release": "npm run check-main && release-it"
|
|
45
47
|
},
|
|
46
48
|
"dependencies": {
|
|
47
49
|
"@modelcontextprotocol/sdk": "^1.17.5"
|
|
48
50
|
},
|
|
49
51
|
"devDependencies": {
|
|
52
|
+
"release-it": "^17.11.0",
|
|
50
53
|
"vitest": "^3.0.7"
|
|
51
54
|
}
|
|
52
55
|
}
|