File tree Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Expand file tree Collapse file tree 1 file changed +44
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments