Zoom
Zoom enables an Agent to interact with Zoom, allowing it to schedule meetings, manage recordings, and handle various meeting-related operations through the Zoom API. The toolkit uses Zoom's Server-to-Server OAuth authentication for secure API access.
Prerequisites
The Zoom toolkit requires the following setup:
- Install required dependencies:
1uv pip install requests-
Set up Server-to-Server OAuth app in Zoom Marketplace:
- Go to Zoom Marketplace
- Click "Develop" → "Build App"
- Choose "Server-to-Server OAuth" app type
- Configure the app with required scopes:
/meeting:write:admin/meeting:read:admin/recording:read:admin
- Note your Account ID, Client ID, and Client Secret
-
Set up environment variables:
1export ZOOM_ACCOUNT_ID=your_account_id2export ZOOM_CLIENT_ID=your_client_id3export ZOOM_CLIENT_SECRET=your_client_secretExample Usage
1from kern.agent import Agent2from kern.tools.zoom import ZoomTools34# Initialize Zoom tools with credentials5zoom_tools = ZoomTools(6 account_id="your_account_id",7 client_id="your_client_id",8 client_secret="your_client_secret"9)1011# Create an agent with Zoom capabilities12agent = Agent(tools=[zoom_tools])1314# Schedule a meeting15response = agent.print_response("""16Schedule a team meeting with the following details:17- Topic: Weekly Team Sync18- Time: Tomorrow at 2 PM UTC19- Duration: 45 minutes20""", markdown=True)Toolkit Params
| Parameter | Type | Default | Description |
|---|---|---|---|
account_id | Optional[str] | None | Zoom account ID. If not provided, uses ZOOM_ACCOUNT_ID environment variable. |
client_id | Optional[str] | None | Zoom client ID. If not provided, uses ZOOM_CLIENT_ID environment variable. |
client_secret | Optional[str] | None | Zoom client secret. If not provided, uses ZOOM_CLIENT_SECRET environment variable. |
Toolkit Functions
| Function | Description |
|---|---|
schedule_meeting | Schedule a new Zoom meeting |
get_upcoming_meetings | Get a list of upcoming meetings |
list_meetings | List all meetings based on type |
get_meeting_recordings | Get recordings for a specific meeting |
delete_meeting | Delete a scheduled meeting |
get_meeting | Get detailed information about a specific meeting |
You can use include_tools or exclude_tools to modify the list of tools the agent has access to. Learn more about selecting tools.
Rate Limits
The Zoom API has rate limits that vary by endpoint and account type:
- Server-to-Server OAuth apps: 100 requests/second
- Meeting endpoints: Specific limits apply based on account type
- Recording endpoints: Lower rate limits, check Zoom documentation
For detailed rate limits, refer to Zoom API Rate Limits.
Developer Resources
- View Tools