@icoretech/warden-mcp 0.1.1 → 0.1.2
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/README.md +5 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
# warden-mcp
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@icoretech/warden-mcp)
|
|
4
|
+
[](https://github.com/icoretech/warden-mcp/actions/workflows/ci.yml)
|
|
5
|
+
[](LICENSE)
|
|
6
|
+
|
|
3
7
|
Programmatic Vaultwarden/Bitwarden vault management over MCP (Model Context Protocol), backed by the official Bitwarden CLI (`bw`).
|
|
4
8
|
|
|
5
9
|
This project exists to let agents and automation **create/search/read/update/move** vault items without re-implementing Bitwarden’s client-side crypto.
|
|
6
10
|
|
|
7
|
-
Published package: `@icoretech/warden-mcp`
|
|
11
|
+
Published package: [`@icoretech/warden-mcp`](https://www.npmjs.com/package/@icoretech/warden-mcp)
|
|
8
12
|
|
|
9
13
|
## Highlights
|
|
10
14
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"private": false,
|
|
3
3
|
"name": "@icoretech/warden-mcp",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"description": "Vaultwarden/Bitwarden MCP server backed by Bitwarden CLI (bw).",
|
|
@@ -42,18 +42,18 @@
|
|
|
42
42
|
"lint": "biome check --write --assist-enabled=true . && tsc --noEmit"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
45
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
46
46
|
"express": "^5.2.1",
|
|
47
|
-
"jose": "^6.
|
|
47
|
+
"jose": "^6.2.2",
|
|
48
48
|
"zod": "^4.3.6"
|
|
49
49
|
},
|
|
50
50
|
"optionalDependencies": {
|
|
51
|
-
"@bitwarden/cli": "2026.
|
|
51
|
+
"@bitwarden/cli": "2026.2.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@biomejs/biome": "^2.
|
|
54
|
+
"@biomejs/biome": "^2.4.8",
|
|
55
55
|
"@types/express": "^5.0.6",
|
|
56
|
-
"@types/node": "^25.
|
|
56
|
+
"@types/node": "^25.5.0",
|
|
57
57
|
"playwright": "1.58.2",
|
|
58
58
|
"tsx": "^4.21.0",
|
|
59
59
|
"typescript": "^5.9.3"
|
|
@@ -63,6 +63,6 @@
|
|
|
63
63
|
"access": "public"
|
|
64
64
|
},
|
|
65
65
|
"engines": {
|
|
66
|
-
"node": ">=24.
|
|
66
|
+
"node": ">=24.14.0"
|
|
67
67
|
}
|
|
68
68
|
}
|