-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclaude_desktop_config.json
More file actions
72 lines (72 loc) · 1.98 KB
/
claude_desktop_config.json
File metadata and controls
72 lines (72 loc) · 1.98 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
69
70
71
72
{
"mcpServers": {
"clerk": {
"command": "npx",
"args": ["-y", "@clerk/mcp"],
"env": {
"CLERK_SECRET_KEY": "env:CLERK_SECRET_KEY",
"CLERK_WEBHOOK_SECRET": "env:CLERK_WEBHOOK_SECRET"
}
},
"convex": {
"command": "npx",
"args": ["-y", "@convex-dev/mcp-server"],
"env": {
"CONVEX_DEPLOYMENT": "env:CONVEX_DEPLOYMENT",
"NEXT_PUBLIC_CONVEX_URL": "env:NEXT_PUBLIC_CONVEX_URL"
}
},
"stripe": {
"command": "npx",
"args": ["-y", "@stripe/mcp"],
"env": {
"STRIPE_SECRET_KEY": "env:STRIPE_SECRET_KEY",
"STRIPE_WEBHOOK_SECRET": "env:STRIPE_WEBHOOK_SECRET"
}
},
"google": {
"command": "npx",
"args": ["-y", "@google-cloud/mcp-server"],
"env": {
"GEMINI_API_KEY": "env:GEMINI_API_KEY",
"GOOGLE_ANALYTICS_ID": "env:GOOGLE_ANALYTICS_ID",
"GOOGLE_APPLICATION_CREDENTIALS": "env:GOOGLE_APPLICATION_CREDENTIALS"
}
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "env:GITHUB_PERSONAL_ACCESS_TOKEN"
}
},
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "C:/Users/Tanner/Mentoloop"]
},
"memory": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"]
},
"playwright": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-playwright"]
},
"docker": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-docker"]
},
"puppeteer": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-puppeteer"]
},
"sequential-thinking": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
},
"ide": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-vscode"]
}
}
}