Skip to content

Commit d2f6631

Browse files
update README
1 parent 77f76f6 commit d2f6631

File tree

1 file changed

+15
-17
lines changed

1 file changed

+15
-17
lines changed

README.md

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,42 +5,40 @@
55
Now you can date a Zoom meeting with AI's help
66
![about.jpg](about.jpg)
77

8-
## 2 Steps to play with zoom-mcp-server
8+
## 3 Steps to play with zoom-mcp-server
99

10+
- Download this repository
1011
- Get Zoom Client ID, Zoom Client Secret and Account ID
1112
- Config MCP server
1213

13-
### 1. Get Zoom Client ID, Zoom Client Secret and Account ID
14+
### 1. Download this repository
15+
16+
```
17+
git clone https://github.com/JavaProgrammerLB/zoom-mcp-server
18+
```
19+
20+
### 2. Get Zoom Client ID, Zoom Client Secret and Account ID
1421

1522
1. vist [Zoom Marketplace](https://marketplace.zoom.us/)
1623
1. Build App and choose **Server to Server OAuth App**
1724
1. Add Scope > Meeting > Select All Meeting Permissions
1825
1. Active your app
1926
then you can get **Account ID**, **Client ID**, **Client Secret** in App Credentials page
2027

21-
### 2. Config MCP Server
28+
### 3. Config MCP Server
2229

2330
```
2431
{
2532
"mcpServers": {
2633
"zoom-mcp-server": {
27-
"command": "docker",
34+
"command": "npx",
2835
"args": [
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+
"/PATH/TO/zoom-mcp-server"
3937
],
4038
"env": {
41-
"ZOOM_ACCOUNT_ID": "YOUR-ZOOM-ACCOUNT-ID",
42-
"ZOOM_CLIENT_ID": "YOUR-ZOOM-CLIENT-ID",
43-
"ZOOM_CLIENT_SECRET": "YOUR-ZOOM-CLIENT-SECRET"
39+
"ZOOM_ACCOUNT_ID": "${ZOOM_ACCOUNT_ID}",
40+
"ZOOM_CLIENT_ID": "${ZOOM_CLIENT_ID}",
41+
"ZOOM_CLIENT_SECRET": "${ZOOM_CLIENT_SECRET}"
4442
}
4543
}
4644
}

0 commit comments

Comments
 (0)