A MCP server for accessing Zoom recordings and transcripts without requiring direct authentication from the end user.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-server-zoom-noauth": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A MCP server for accessing Zoom recordings and transcripts without requiring direct authentication from the end user.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
This server is missing a description.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in communication
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
Email & SMS infrastructure for AI agents — send and receive real email and text messages programmatically
A Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph API
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Zoom Noauth and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This project is a Model Control Protocol (MCP) server for accessing Zoom API functionality without requiring direct authentication from the end user. It handles the OAuth flows and provides a set of tools for interacting with Zoom recordings and transcripts.
OAuth credential management through tool arguments (no local auth flow)
List user's cloud recordings with pagination
Get detailed information about specific meeting recordings
Access meeting transcripts
git clone https://github.com/peakmojo/mcp-server-zoom-noauth.git
cd mcp-server-zoom-noauth
pip install -r requirements.txt
# Build the Docker image
docker build -t mcp-server-zoom-noauth .
To publish the Docker image for multiple platforms, you can use the docker buildx command:
docker buildx create --use
docker buildx build --platform linux/amd64,linux/arm64 -t buryhuang/mcp-server-zoom-noauth:latest --push .
docker buildx imagetools inspect buryhuang/mcp-server-zoom-noauth:latest
python -m src.mcp_server_zoom_noauth.server
The server provides the following tools:
{
"zoom_refresh_token": "your_refresh_token",
"zoom_client_id": "your_client_id",
"zoom_client_secret": "your_client_secret"
}
{
"zoom_access_token": "your_access_token",
"from_date": "2023-01-01",
"to_date": "2023-01-31",
"page_size": 30,
"page_number": 1
}
{
"zoom_access_token": "your_access_token",
"meeting_id": "meeting_id_here"
}
{
"zoom_access_token": "your_access_token",
"meeting_id": "meeting_id_here"
}
This server is designed to be completely "noauth" from its perspective:
To use the tools, you'll need to obtain OAuth credentials from Zoom:
This project uses the Zoom API v2. For more information, refer t