Skip to content

Commit 819154a

Browse files
committed
Add 1Password MCP server definition
Community 1Password MCP server for accessing secrets from vaults. List vaults, retrieve items, and search credentials. Uses @takescake/1password-mcp. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit 819154a

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/community.1password.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.1password",
4+
"name": "1Password",
5+
"alias": "1password",
6+
"description": "Access secrets from 1Password vaults. List vaults, retrieve items, and search for credentials using a service account token.",
7+
"icon": "https://avatars.githubusercontent.com/u/38230737?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["security"],
10+
"tags": ["1password", "secrets", "passwords", "credentials", "vaults", "security"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@takescake/1password-mcp"],
16+
"env": {
17+
"OP_SERVICE_ACCOUNT_TOKEN": "${input:OP_SERVICE_ACCOUNT_TOKEN}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "OP_SERVICE_ACCOUNT_TOKEN",
23+
"label": "1Password Service Account Token",
24+
"description": "Service account token for accessing 1Password vaults. Scoped to specific vaults.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "ops_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://my.1password.com/developer-tools/infrastructure-secrets/serviceaccount",
31+
"instructions": "1. Go to 1Password.com > Developer Tools > Service Accounts\n2. Click 'Create a Service Account'\n3. Name it and select which vaults it can access\n4. Copy the token (starts with ops_)",
32+
"button_label": "Create Service Account"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Create a 1Password Service Account at https://my.1password.com/developer-tools/infrastructure-secrets/serviceaccount"
42+
},
43+
44+
"contributor": {
45+
"name": "TakesCake",
46+
"github": "CakeRepository",
47+
"url": "https://github.com/CakeRepository"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/CakeRepository/1Password-MCP",
52+
"homepage": "https://1password.com",
53+
"documentation": "https://github.com/CakeRepository/1Password-MCP#readme"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": true
63+
}
64+
}

0 commit comments

Comments
 (0)