@bitwarden/mcp-server 2025.7.0-beta.1 → 2025.7.1
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 +21 -2
- package/dist/index.js +1 -1
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -4,12 +4,31 @@ Model Context Protocol (MCP) server that enables interaction with the Bitwarden
|
|
|
4
4
|
|
|
5
5
|
## Prerequisites
|
|
6
6
|
|
|
7
|
-
- Node.js
|
|
7
|
+
- Node.js 22
|
|
8
8
|
- Bitwarden CLI (`bw`) installed and authenticated
|
|
9
9
|
- Valid Bitwarden session token
|
|
10
10
|
|
|
11
11
|
## Installation
|
|
12
12
|
|
|
13
|
+
### Option One: Configuration in your AI app
|
|
14
|
+
|
|
15
|
+
Open up your application configuration, e.g. for Claude Desktop:
|
|
16
|
+
|
|
17
|
+
```json
|
|
18
|
+
{
|
|
19
|
+
"mcpServers": {
|
|
20
|
+
"bitwarden": {
|
|
21
|
+
"command": "npx",
|
|
22
|
+
"args": ["-y", "@bitwarden/mcp-server"]
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### Option Two: Local checkout
|
|
29
|
+
|
|
30
|
+
Requires that this repository be checked out locally. Once that's done:
|
|
31
|
+
|
|
13
32
|
```bash
|
|
14
33
|
npm install
|
|
15
34
|
npm run build
|
|
@@ -145,7 +164,7 @@ The server provides the following Bitwarden CLI tools:
|
|
|
145
164
|
3. **Inspector not starting**
|
|
146
165
|
|
|
147
166
|
- Check that the server builds successfully: `npm run build`
|
|
148
|
-
- Verify Node.js version is
|
|
167
|
+
- Verify Node.js version is 22
|
|
149
168
|
|
|
150
169
|
4. **CLI commands failing**
|
|
151
170
|
- Verify Bitwarden CLI is installed: `bw --version`
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@bitwarden/mcp-server",
|
|
4
|
-
"version": "2025.7.
|
|
4
|
+
"version": "2025.7.1",
|
|
5
5
|
"description": "Bitwarden MCP Server",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -14,26 +14,26 @@
|
|
|
14
14
|
},
|
|
15
15
|
"homepage": "https://bitwarden.com",
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@modelcontextprotocol/sdk": "1.13.
|
|
17
|
+
"@modelcontextprotocol/sdk": "1.13.3",
|
|
18
18
|
"shx": "0.4.0",
|
|
19
|
-
"zod": "3.25.
|
|
19
|
+
"zod": "3.25.71"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@eslint/js": "9.
|
|
23
|
-
"@jest/globals": "30.0.
|
|
24
|
-
"@modelcontextprotocol/inspector": "0.
|
|
22
|
+
"@eslint/js": "9.30.1",
|
|
23
|
+
"@jest/globals": "30.0.4",
|
|
24
|
+
"@modelcontextprotocol/inspector": "0.15.0",
|
|
25
25
|
"@types/jest": "30.0.0",
|
|
26
|
-
"@types/node": "22.
|
|
27
|
-
"eslint": "9.
|
|
28
|
-
"globals": "16.
|
|
26
|
+
"@types/node": "22.16.0",
|
|
27
|
+
"eslint": "9.30.1",
|
|
28
|
+
"globals": "16.3.0",
|
|
29
29
|
"husky": "9.1.7",
|
|
30
|
-
"jest": "30.0.
|
|
30
|
+
"jest": "30.0.4",
|
|
31
31
|
"jest-junit": "16.0.0",
|
|
32
32
|
"lint-staged": "16.1.2",
|
|
33
|
-
"prettier": "3.
|
|
33
|
+
"prettier": "3.6.2",
|
|
34
34
|
"ts-jest": "29.4.0",
|
|
35
35
|
"typescript": "5.8.3",
|
|
36
|
-
"typescript-eslint": "8.35.
|
|
36
|
+
"typescript-eslint": "8.35.1"
|
|
37
37
|
},
|
|
38
38
|
"bin": {
|
|
39
39
|
"mcp-server-bitwarden": "dist/index.js"
|