A MCP server for accessing Zoom recordings and transcripts without requiring direct authentication from the end user.
{
"mcpServers": {
"mcp-server-zoom-noauth": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
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.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
Apache-2.0. View license →
Is it maintained?
Last commit 343 days ago. 9 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
Search, evaluate, and compare 17,000+ MCP servers — each scored on security, maintenance, and efficiency.
MCP server for scanning and remediating hardcoded secrets using GitGuardian’s API. Detect over 500 secret types and prevent credential leaks before code goes public.
Trust infrastructure for AI agents — DIDs, reputation, verifiable credentials, USDC.
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