KosmoKrator

communication

Zoom MCP Integration for LangChain

Connect Zoom to LangChain through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

7 functions 6 read 1 write Manual OAuth token auth

Connect Zoom to LangChain

Bridge LangChain agents to local KosmoKrator integration tools through MCP or headless CLI calls.

Use the MCP gateway when the agent should discover tools, or wrap kosmo integrations:call for fixed chains. The gateway is local, scoped to this integration, and starts with --write=deny so LangChain can inspect read-capable tools without receiving write access by default.

Zoom MCP Config for LangChain

Keep the gateway scoped to the integration and operation class needed by the chain.

{
  "mcpServers": {
    "kosmokrator-zoom": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=zoom",
        "--write=deny"
      ]
    }
  }
}

Run the Gateway Manually

kosmokrator mcp:serve --integration=zoom --write=deny

Why Use KosmoKrator Here

Scoped tools

Expose only Zoom instead of a broad multi-service tool list.

Local credentials

Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.

Write policy

Start read-only, then opt into ask or allow for trusted workspaces.

Zoom Tools Visible to LangChain

LangChain sees stable MCP tool names generated from the Zoom integration catalog.

MCP toolSource functionTypeDescription
integration__zoom__zoom_create_meeting zoom.zoom_create_meeting Write Create a new Zoom meeting. Provide a topic, start time (ISO 8601), duration, and optional timezone. Returns the meeting with join URL and password.
integration__zoom__zoom_get_current_user zoom.zoom_get_current_user Read Get the profile of the currently authenticated Zoom user. Returns email, name, account type, status, and timezone.
integration__zoom__zoom_get_meeting zoom.zoom_get_meeting Read Get details of a specific Zoom meeting by ID. Returns the meeting topic, agenda, start time, duration, join URL, and settings.
integration__zoom__zoom_get_user zoom.zoom_get_user Read Get details of a specific Zoom user by ID or "me" for the authenticated user. Returns email, name, type, status, and timezone.
integration__zoom__zoom_list_meetings zoom.zoom_list_meetings Read List meetings for a Zoom user. Returns meeting IDs, topics, start times, durations, and join URLs. Use type "live" for in-progress, "scheduled" for upcoming, or "upcoming" for all upcoming meetings.
integration__zoom__zoom_list_recordings zoom.zoom_list_recordings Read List cloud recordings for a Zoom user. Returns recording IDs, topics, start times, durations, and download URLs for recording files.
integration__zoom__zoom_list_users zoom.zoom_list_users Read List users in the Zoom account. Returns user IDs, emails, names, types (1=basic, 2=licensed), and status. Use this to find user IDs for other operations.

Related Zoom Pages