-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.67 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
{
"name": "@takescake/1password-mcp",
"version": "4.0.1",
"private": false,
"type": "module",
"description": "Security-first MCP server for 1Password — vault/item tools, prompts, resources, and op_run secret injection (MCP 2026-07-28)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/CakeRepository/1Password-MCP.git"
},
"homepage": "https://github.com/CakeRepository/1Password-MCP#readme",
"bugs": {
"url": "https://github.com/CakeRepository/1Password-MCP/issues"
},
"mcpName": "io.github.CakeRepository/1password",
"keywords": [
"mcp",
"model-context-protocol",
"mcp-server",
"1password",
"password-manager",
"secrets",
"secret-management",
"vault",
"service-account",
"op-run",
"claude",
"cursor",
"codex"
],
"engines": {
"node": ">=20"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "tsc --noEmit",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"prepublishOnly": "npm run clean && npm run build && npm test"
},
"bin": {
"1password-mcp": "bin/1password-mcp.js"
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"dependencies": {
"@1password/sdk": "^0.3.1",
"zod": "^4.0.0",
"@modelcontextprotocol/server": "^2.0.0-beta.5"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}