|
1 | 1 | # Zoom MCP Server
|
| 2 | + |
2 | 3 | [](https://smithery.ai/server/@JavaProgrammerLB/zoom-mcp-server)
|
3 | 4 |
|
4 | 5 | Now you can date a Zoom meeting with AI's help
|
5 | 6 | 
|
6 | 7 |
|
7 |
| -## 3 Steps to play with zoom-mcp-server |
| 8 | +## 2 Steps to play with zoom-mcp-server |
8 | 9 |
|
9 |
| -- Download this repository |
10 | 10 | - Get Zoom Client ID, Zoom Client Secret and Account ID
|
11 | 11 | - Config MCP server
|
12 | 12 |
|
13 |
| -### 1. Download this repository |
14 |
| - |
15 |
| -``` |
16 |
| -git clone https://github.com/JavaProgrammerLB/zoom-mcp-server |
17 |
| -``` |
18 |
| - |
19 |
| -### 2. Get Zoom Client ID, Zoom Client Secret and Account ID |
| 13 | +### 1. Get Zoom Client ID, Zoom Client Secret and Account ID |
20 | 14 |
|
21 | 15 | 1. vist [Zoom Marketplace](https://marketplace.zoom.us/)
|
22 | 16 | 1. Build App and choose **Server to Server OAuth App**
|
23 | 17 | 1. Add Scope > Meeting > Select All Meeting Permissions
|
24 | 18 | 1. Active your app
|
25 | 19 | then you can get **Account ID**, **Client ID**, **Client Secret** in App Credentials page
|
26 | 20 |
|
27 |
| -### 3. Config MCP Server |
| 21 | +### 2. Config MCP Server |
28 | 22 |
|
29 | 23 | ```
|
30 | 24 | {
|
31 | 25 | "mcpServers": {
|
32 | 26 | "zoom-mcp-server": {
|
33 |
| - "command": "npx", |
| 27 | + "command": "docker", |
34 | 28 | "args": [
|
35 |
| - "/PATH/TO/zoom-mcp-server" |
| 29 | + "run", |
| 30 | + "-i", |
| 31 | + "--rm", |
| 32 | + "-e", |
| 33 | + "ZOOM_ACCOUNT_ID", |
| 34 | + "-e", |
| 35 | + "ZOOM_CLIENT_ID", |
| 36 | + "-e", |
| 37 | + "ZOOM_CLIENT_SECRET", |
| 38 | + "ghcr.io/javaprogrammerlb/zoom-mcp-server" |
36 | 39 | ],
|
37 | 40 | "env": {
|
38 |
| - "ZOOM_ACCOUNT_ID": "${ZOOM_ACCOUNT_ID}", |
39 |
| - "ZOOM_CLIENT_ID": "${ZOOM_CLIENT_ID}", |
40 |
| - "ZOOM_CLIENT_SECRET": "${ZOOM_CLIENT_SECRET}" |
| 41 | + "ZOOM_ACCOUNT_ID": "YOUR-ZOOM-ACCOUNT-ID", |
| 42 | + "ZOOM_CLIENT_ID": "YOUR-ZOOM-CLIENT-ID", |
| 43 | + "ZOOM_CLIENT_SECRET": "YOUR-ZOOM-CLIENT-SECRET" |
41 | 44 | }
|
42 | 45 | }
|
43 | 46 | }
|
|
0 commit comments