Zoom MCP Server
Enables intelligent monitoring and management of Zoom rooms across multiple sites using smart location resolution and hierarchical discovery. It provides tools for checking room status, retrieving location hierarchies, and accessing detailed room configurations through the Zoom API.
README
Zoom MCP Server
A FastMCP Model Context Protocol server that provides intelligent monitoring and management of Zoom rooms across multiple sites with smart location resolution.
๐ Features (New!)
- 5 Powerful Tools for comprehensive Zoom room management
- Smart Location Resolution with fuzzy matching (e.g., "SF1", "DEN1", "Floor 3")
- Denver Building Aliases - Special hardcoded mappings for room naming compatibility
- Efficient API Usage - Single call for company-wide queries vs. multiple location-specific calls
- OAuth 2.0 Authentication with automatic token refresh and file-based caching
- Hierarchical Location Discovery - Understands campus โ building โ floor relationships
- User-Friendly Confirmations - Clear messages explaining what was resolved
๐ ๏ธ Tools Available
test_zoom_connection
Test Zoom API authentication and connection status.
# Usage: Verify credentials are working
mcp call test_zoom_connection --params '{}' uv run src/server.py
get_zoom_sites
Get all Zoom locations with hierarchy and aliases.
# Usage: Understand available locations and relationships
mcp call get_zoom_sites --params '{}' uv run src/server.py
get_zoom_rooms
Get Zoom rooms with optional smart location filtering.
โก IMPORTANT: For maximum efficiency with company-wide queries (e.g., "find offline rooms anywhere"), omit location_query to make a single API call.
# Company-wide (EFFICIENT - single API call)
mcp call get_zoom_rooms --params '{}' uv run src/server.py
# Location-specific (multiple API calls)
mcp call get_zoom_rooms --params '{"location_query":"SF1"}' uv run src/server.py
mcp call get_zoom_rooms --params '{"location_query":"DEN1"}' uv run src/server.py
mcp call get_zoom_rooms --params '{"location_query":"Floor 3"}' uv run src/server.py
get_room_details
Get detailed information about a specific room.
# Usage: Deep dive into specific room configuration
mcp call get_room_details --params '{"room_id":"ROOM_ID_HERE"}' uv run src/server.py
resolve_location
Debug tool to test location resolution without fetching rooms.
# Usage: Debug how location queries get resolved
mcp call resolve_location --params '{"location_query":"DEN2"}' uv run src/server.py
๐ Smart Location Resolution
The server understands various location query patterns:
| Query Pattern | Example | What It Resolves |
|---|---|---|
| Campus codes | SF1, NYC, DEN |
Entire campus with all buildings/floors |
| Building numbers | Building 1, DEN1 |
Specific building or hardcoded alias |
| Floor numbers | Floor 1, 3F |
All floors with that number across sites |
| Partial names | Denver, Francisco |
Best fuzzy match |
Special Denver Building Aliases
Due to Zoom's location hierarchy vs. room naming patterns, Denver has special hardcoded mappings:
DEN1โ Denver Building 1 (Floor 3) โ Rooms:DEN-1-101,DEN-1-102, etc.DEN2โ Denver Building 2 (T3F3, T3F5, T3F6) โ Rooms:DEN-2-201,DEN-2-202, etc.
๐ง Installation & Setup
Prerequisites
- Python 3.10+
- UV package manager
- Zoom Pro/Business account with API access
1. Clone Repository
git clone https://github.com/chadkunsman/zoom-mcp.git
cd zoom-mcp
2. Install Dependencies
uv pip install -e .
3. Zoom API Configuration
- Create a Server-to-Server OAuth app in Zoom Marketplace
- Add required scope:
room:read:admin - Get your credentials: Account ID, Client ID, Client Secret
4. Configure Credentials
Create .env file:
ZOOM_ACCOUNT_ID=your_account_id_here
ZOOM_CLIENT_ID=your_client_id_here
ZOOM_CLIENT_SECRET=your_client_secret_here
5. Test Installation
# Install MCPTools for testing
brew tap f/mcptools && brew install mcp
# Test the server
mcp tools uv run src/server.py
mcp call test_zoom_connection --params '{}' uv run src/server.py
๐ MCP Client Configuration
For Claude Desktop and Similar MCP Clients
Add to your MCP client configuration:
Using Environment Variables (Recommended)
{
"mcpServers": {
"zoom-mcp": {
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/zoom-mcp",
"src/server.py"
],
"env": {
"ZOOM_ACCOUNT_ID": "your_account_id_here",
"ZOOM_CLIENT_ID": "your_client_id_here",
"ZOOM_CLIENT_SECRET": "your_client_secret_here"
}
}
}
}
Using Command-Line Arguments
{
"mcpServers": {
"zoom-mcp": {
"command": "uv",
"args": [
"run",
"--directory",
"/path/to/zoom-mcp",
"src/server.py",
"--zoom-account-id",
"your_account_id_here",
"--zoom-client-id",
"your_client_id_here",
"--zoom-client-secret",
"your_client_secret_here"
]
}
}
}
๐ก Usage Examples
Find All Offline Rooms (Efficient)
"Are any Zoom rooms offline anywhere in the company?"
โ Uses get_zoom_rooms without location_query (single API call)
Check Specific Location
"Show me all rooms in San Francisco"
โ Uses get_zoom_rooms with location_query: "SF1"
Debug Location Resolution
"How would 'DEN2' be resolved?"
โ Uses resolve_location to see what locations match
Room Status by Building
"What's the status of Denver Building 1 rooms?"
โ Uses get_zoom_rooms with location_query: "DEN1"
๐๏ธ Architecture
zoom-mcp/
โโโ src/
โ โโโ server.py # Main MCP server with 5 tools
โ โโโ config/ # Configuration modules
โ โโโ settings.py # Environment & auth configuration
โ โโโ zoom_auth.py # OAuth token management
โ โโโ zoom_hierarchy.py # Location discovery & relationships
โ โโโ zoom_fuzzy.py # Smart location resolution
โโโ docs/ # Comprehensive documentation
โโโ test_server.py # Direct testing script
Key Design Patterns
- Import Inside Functions: Configuration modules imported inside tool functions to avoid timing issues
- Multi-Level Token Caching: Memory cache + file persistence with 1-hour expiration and 5-minute buffer
- Hierarchical Discovery: Automatic campus โ building โ floor relationship building
- Hybrid Resolution: Hardcoded Denver aliases + dynamic fuzzy matching for other sites
๐งช Testing
MCPTools Testing
# List all tools
mcp tools uv run src/server.py
# Test authentication
mcp call test_zoom_connection --params '{}' uv run src/server.py
# Interactive testing
mcp shell uv run src/server.py
Direct Script Testing
python test_server.py
๐ Documentation
Comprehensive documentation available in docs/:
- Quick Start Guide - Setup and basic usage
- Authentication Guide - OAuth implementation details
- Testing Guide - MCPTools usage and examples
- Best Practices - Zoom-specific patterns
- Advanced Features - Deep dive into capabilities
๐ Security
- Credentials stored in
.envfiles (not committed to git) - Token caching with secure file permissions
- Bearer token automatic refresh
- Error messages don't expose sensitive information
๐ค Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Test with MCPTools
- Submit a pull request
๐ License
This project is licensed under the MIT License.
๐ Troubleshooting
Common Issues
-
"Zoom credentials not configured"
- Verify
.envfile exists with correct variables - Check environment variable names match exactly
- Verify
-
"Token request failed: 401"
- Verify Zoom app credentials are correct
- Ensure app has
room:read:adminscope - Confirm app is Server-to-Server OAuth type
-
"No location matches found"
- Check spelling of location query
- Use
get_zoom_sitesto see available locations - Test with
resolve_locationto debug fuzzy matching
-
Import timing issues
- Configuration modules imported inside tool functions
- Never import config at module level before
initialize_config()
Debug Commands
# Test connection
mcp call test_zoom_connection --params '{}' uv run src/server.py
# List all sites
mcp call get_zoom_sites --params '{}' uv run src/server.py
# Debug location resolution
mcp call resolve_location --params '{"location_query":"your_query"}' uv run src/server.py
Built with FastMCP and the Model Context Protocol.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.