Skip to content

Commit a592315

Browse files
add vscode mcp config
1 parent 7785ad5 commit a592315

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

.vscode/mcp.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"inputs": [
3+
{
4+
"type": "promptString",
5+
"id": "zoom_account_id",
6+
"description": "Zoom Account ID",
7+
"password": true
8+
},
9+
{
10+
"type": "promptString",
11+
"id": "zoom_client_id",
12+
"description": "Zoom Client ID",
13+
"password": true
14+
},
15+
{
16+
"type": "promptString",
17+
"id": "zoom_client_secret",
18+
"description": "Zoom Client Secret",
19+
"password": true
20+
}
21+
],
22+
"servers": {
23+
"github": {
24+
"command": "docker",
25+
"args": [
26+
"run",
27+
"-i",
28+
"--rm",
29+
"-e",
30+
"ZOOM_ACCOUNT_ID",
31+
"-e",
32+
"ZOOM_CLIENT_ID",
33+
"-e",
34+
"ZOOM_CLIENT_SECRET",
35+
"ghcr.io/javaprogrammerlb/zoom-mcp-server"
36+
],
37+
"env": {
38+
"ZOOM_ACCOUNT_ID": "${input:zoom_account_id}",
39+
"ZOOM_CLIENT_ID": "${input:zoom_client_id}",
40+
"ZOOM_CLIENT_SECRET": "${input:zoom_client_secret}"
41+
}
42+
}
43+
}
44+
}

0 commit comments

Comments
 (0)