@striderlabs/mcp-zoom 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
File without changes
package/dist/index.js ADDED
@@ -0,0 +1,34 @@
1
+ #!/usr/bin/env node
2
+ #!/usr/bin/env node
3
+
4
+ // src/index.ts
5
+ import { Server } from "@modelcontextprotocol/sdk/server/index.js";
6
+ import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
7
+ import { CallToolRequestSchema, ListToolsRequestSchema } from "@modelcontextprotocol/sdk/types.js";
8
+ var server = new Server(
9
+ { name: "striderlabs-mcp-zoom", version: "1.0.0" },
10
+ { capabilities: { tools: {} } }
11
+ );
12
+ server.setRequestHandler(ListToolsRequestSchema, async () => ({
13
+ tools: [
14
+ { name: "zoom_status", description: "Check Zoom login status", inputSchema: { type: "object", properties: {} } },
15
+ { name: "zoom_login", description: "Open Zoom login page for authentication", inputSchema: { type: "object", properties: {} } },
16
+ { name: "zoom_confirm_login", description: "Confirm and save Zoom session", inputSchema: { type: "object", properties: {} } },
17
+ { name: "zoom_logout", description: "Clear Zoom session", inputSchema: { type: "object", properties: {} } },
18
+ { name: "zoom_list_meetings", description: "List upcoming scheduled meetings", inputSchema: { type: "object", properties: { type: { type: "string", enum: ["scheduled", "live", "upcoming"], default: "upcoming" }, limit: { type: "number", default: 20 } } } },
19
+ { name: "zoom_schedule_meeting", description: "Schedule a new Zoom meeting", inputSchema: { type: "object", required: ["topic", "start_time", "duration"], properties: { topic: { type: "string" }, start_time: { type: "string", description: "ISO 8601 datetime" }, duration: { type: "number", description: "Duration in minutes" }, agenda: { type: "string" }, password: { type: "string" }, waiting_room: { type: "boolean", default: true }, auto_recording: { type: "string", enum: ["none", "local", "cloud"], default: "none" } } } },
20
+ { name: "zoom_get_meeting", description: "Get details of a specific meeting", inputSchema: { type: "object", required: ["meeting_id"], properties: { meeting_id: { type: "string" } } } },
21
+ { name: "zoom_delete_meeting", description: "Delete/cancel a scheduled meeting. Requires confirm=true.", inputSchema: { type: "object", required: ["meeting_id", "confirm"], properties: { meeting_id: { type: "string" }, confirm: { type: "boolean" } } } },
22
+ { name: "zoom_update_meeting", description: "Update meeting details", inputSchema: { type: "object", required: ["meeting_id"], properties: { meeting_id: { type: "string" }, topic: { type: "string" }, start_time: { type: "string" }, duration: { type: "number" } } } },
23
+ { name: "zoom_list_recordings", description: "List cloud recordings", inputSchema: { type: "object", properties: { start_date: { type: "string" }, end_date: { type: "string" }, limit: { type: "number", default: 20 } } } },
24
+ { name: "zoom_get_recording", description: "Get recording details and download links", inputSchema: { type: "object", required: ["meeting_id"], properties: { meeting_id: { type: "string" } } } },
25
+ { name: "zoom_delete_recording", description: "Delete a cloud recording. Requires confirm=true.", inputSchema: { type: "object", required: ["meeting_id", "confirm"], properties: { meeting_id: { type: "string" }, confirm: { type: "boolean" } } } },
26
+ { name: "zoom_get_settings", description: "Get user's Zoom settings", inputSchema: { type: "object", properties: {} } }
27
+ ]
28
+ }));
29
+ server.setRequestHandler(CallToolRequestSchema, async (req) => {
30
+ const { name } = req.params;
31
+ return { content: [{ type: "text", text: JSON.stringify({ success: false, error: `${name}: Not implemented. Zoom API integration pending.` }) }] };
32
+ });
33
+ var transport = new StdioServerTransport();
34
+ await server.connect(transport);
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "@striderlabs/mcp-zoom",
3
+ "version": "1.0.0",
4
+ "description": "MCP server for Zoom — let AI agents schedule meetings, manage recordings, and handle video conferencing",
5
+ "main": "dist/index.js",
6
+ "bin": { "striderlabs-mcp-zoom": "dist/index.js" },
7
+ "type": "module",
8
+ "scripts": {
9
+ "build": "esbuild src/index.ts --bundle --platform=node --format=esm --packages=external --outfile=dist/index.js --banner:js='#!/usr/bin/env node'",
10
+ "start": "node dist/index.js"
11
+ },
12
+ "keywords": ["mcp", "zoom", "video", "meetings", "conferencing", "webinar", "ai-agent", "strider"],
13
+ "author": "Strider Labs <hello@striderlabs.ai>",
14
+ "license": "MIT",
15
+ "homepage": "https://striderlabs.ai",
16
+ "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "patchright": "^1.58.2" },
17
+ "devDependencies": { "@types/node": "^20.11.0", "esbuild": "^0.20.0", "typescript": "^5.3.3" },
18
+ "mcpName": "io.striderlabs/zoom"
19
+ }
package/src/index.ts ADDED
@@ -0,0 +1,35 @@
1
+ #!/usr/bin/env node
2
+ import { Server } from "@modelcontextprotocol/sdk/server/index.js";
3
+ import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
4
+ import { CallToolRequestSchema, ListToolsRequestSchema } from "@modelcontextprotocol/sdk/types.js";
5
+
6
+ const server = new Server(
7
+ { name: "striderlabs-mcp-zoom", version: "1.0.0" },
8
+ { capabilities: { tools: {} } }
9
+ );
10
+
11
+ server.setRequestHandler(ListToolsRequestSchema, async () => ({
12
+ tools: [
13
+ { name: "zoom_status", description: "Check Zoom login status", inputSchema: { type: "object", properties: {} } },
14
+ { name: "zoom_login", description: "Open Zoom login page for authentication", inputSchema: { type: "object", properties: {} } },
15
+ { name: "zoom_confirm_login", description: "Confirm and save Zoom session", inputSchema: { type: "object", properties: {} } },
16
+ { name: "zoom_logout", description: "Clear Zoom session", inputSchema: { type: "object", properties: {} } },
17
+ { name: "zoom_list_meetings", description: "List upcoming scheduled meetings", inputSchema: { type: "object", properties: { type: { type: "string", enum: ["scheduled", "live", "upcoming"], default: "upcoming" }, limit: { type: "number", default: 20 } } } },
18
+ { name: "zoom_schedule_meeting", description: "Schedule a new Zoom meeting", inputSchema: { type: "object", required: ["topic", "start_time", "duration"], properties: { topic: { type: "string" }, start_time: { type: "string", description: "ISO 8601 datetime" }, duration: { type: "number", description: "Duration in minutes" }, agenda: { type: "string" }, password: { type: "string" }, waiting_room: { type: "boolean", default: true }, auto_recording: { type: "string", enum: ["none", "local", "cloud"], default: "none" } } } },
19
+ { name: "zoom_get_meeting", description: "Get details of a specific meeting", inputSchema: { type: "object", required: ["meeting_id"], properties: { meeting_id: { type: "string" } } } },
20
+ { name: "zoom_delete_meeting", description: "Delete/cancel a scheduled meeting. Requires confirm=true.", inputSchema: { type: "object", required: ["meeting_id", "confirm"], properties: { meeting_id: { type: "string" }, confirm: { type: "boolean" } } } },
21
+ { name: "zoom_update_meeting", description: "Update meeting details", inputSchema: { type: "object", required: ["meeting_id"], properties: { meeting_id: { type: "string" }, topic: { type: "string" }, start_time: { type: "string" }, duration: { type: "number" } } } },
22
+ { name: "zoom_list_recordings", description: "List cloud recordings", inputSchema: { type: "object", properties: { start_date: { type: "string" }, end_date: { type: "string" }, limit: { type: "number", default: 20 } } } },
23
+ { name: "zoom_get_recording", description: "Get recording details and download links", inputSchema: { type: "object", required: ["meeting_id"], properties: { meeting_id: { type: "string" } } } },
24
+ { name: "zoom_delete_recording", description: "Delete a cloud recording. Requires confirm=true.", inputSchema: { type: "object", required: ["meeting_id", "confirm"], properties: { meeting_id: { type: "string" }, confirm: { type: "boolean" } } } },
25
+ { name: "zoom_get_settings", description: "Get user's Zoom settings", inputSchema: { type: "object", properties: {} } },
26
+ ],
27
+ }));
28
+
29
+ server.setRequestHandler(CallToolRequestSchema, async (req) => {
30
+ const { name } = req.params;
31
+ return { content: [{ type: "text", text: JSON.stringify({ success: false, error: `${name}: Not implemented. Zoom API integration pending.` }) }] };
32
+ });
33
+
34
+ const transport = new StdioServerTransport();
35
+ await server.connect(transport);
Binary file
package/tsconfig.json ADDED
@@ -0,0 +1 @@
1
+ { "compilerOptions": { "target": "ES2022", "module": "ESNext", "moduleResolution": "bundler", "esModuleInterop": true, "strict": true, "skipLibCheck": true, "outDir": "./dist", "rootDir": "./src" }, "include": ["src/**/*"] }