{"id":29113673,"url":"https://github.com/peakmojo/mcp-server-zoom-noauth","last_synced_at":"2025-06-29T11:07:37.293Z","repository":{"id":287997239,"uuid":"966473083","full_name":"peakmojo/mcp-server-zoom-noauth","owner":"peakmojo","description":"A MCP server for accessing Zoom recordings and transcripts without requiring direct authentication from the end user.","archived":false,"fork":false,"pushed_at":"2025-04-24T16:58:55.000Z","size":33,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-24T17:49:23.053Z","etag":null,"topics":["mcp-server","oauth2-client","zoom-api","zoom-meetings","zoom-recording"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/peakmojo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-15T01:25:07.000Z","updated_at":"2025-04-24T16:58:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"7edd1333-2fa4-46ad-a0b9-7d100ddd70aa","html_url":"https://github.com/peakmojo/mcp-server-zoom-noauth","commit_stats":null,"previous_names":["peakmojo/mcp-server-zoom-noauth"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/peakmojo/mcp-server-zoom-noauth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peakmojo%2Fmcp-server-zoom-noauth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peakmojo%2Fmcp-server-zoom-noauth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peakmojo%2Fmcp-server-zoom-noauth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peakmojo%2Fmcp-server-zoom-noauth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/peakmojo","download_url":"https://codeload.github.com/peakmojo/mcp-server-zoom-noauth/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peakmojo%2Fmcp-server-zoom-noauth/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262581376,"owners_count":23331913,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mcp-server","oauth2-client","zoom-api","zoom-meetings","zoom-recording"],"created_at":"2025-06-29T11:05:43.997Z","updated_at":"2025-06-29T11:07:37.273Z","avatar_url":"https://github.com/peakmojo.png","language":"Python","funding_links":[],"categories":["🤖 AI/ML","Communication"],"sub_categories":["How to Submit"],"readme":"# MCP Server for Zoom (No Auth) - Python \u0026 Node.js\n\n[![Docker Hub](https://img.shields.io/docker/pulls/buryhuang/mcp-server-zoom-noauth?label=Docker%20Hub)](https://hub.docker.com/r/buryhuang/mcp-server-zoom-noauth)  [![npm version](https://img.shields.io/npm/v/@peakmojo/mcp-server-zoom-noauth.svg)](https://www.npmjs.com/package/@peakmojo/mcp-server-zoom-noauth) [![License: Apache 2.0](https://img.shields.io/badge/license-Apache%202.0-blue.svg?style=flat)](https://opensource.org/licenses/MIT)\n\nThis 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.\n\n\u003ca href=\"https://glama.ai/mcp/servers/@peakmojo/mcp-server-zoom-noauth\"\u003e\n  \u003cimg width=\"380\" height=\"200\" src=\"https://glama.ai/mcp/servers/@peakmojo/mcp-server-zoom-noauth/badge\" alt=\"Zoom Recordings No-Auth MCP server\" /\u003e\n\u003c/a\u003e\n\n## Features\n\n- OAuth credential management through tool arguments (no local auth flow)\n- List user's cloud recordings with pagination\n- Get detailed information about specific meeting recordings\n- Access meeting transcripts\n\n  \u003cimg width=\"800\" alt=\"image\" src=\"https://github.com/user-attachments/assets/2e2ae569-fa10-427a-8dc0-24e7a811bfb1\" /\u003e\n\n\n## Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/peakmojo/mcp-server-zoom-noauth.git\ncd mcp-server-zoom-noauth\n```\n\n2. Install the required dependencies:\n```bash\npip install -r requirements.txt\n```\n\n## Docker\n\n### Building the Docker Image\n\n```bash\n# Build the Docker image\ndocker build -t mcp-server-zoom-noauth .\n```\n\n### Cross-Platform Publishing\n\nTo publish the Docker image for multiple platforms, you can use the docker buildx command:\n\n1. Create a new builder instance (if you haven't already):\n```bash\ndocker buildx create --use\n```\n\n2. Build and push the image for multiple platforms:\n```bash\ndocker buildx build --platform linux/amd64,linux/arm64 -t buryhuang/mcp-server-zoom-noauth:latest --push .\n```\n\n3. Verify the image is available for the specified platforms:\n```bash\ndocker buildx imagetools inspect buryhuang/mcp-server-zoom-noauth:latest\n```\n\n## Usage\n\n### Starting the server\n\n```bash\npython -m src.mcp_server_zoom_noauth.server\n```\n\n### Available Tools\n\nThe server provides the following tools:\n\n1. **zoom_refresh_token** - Refresh an OAuth token using a refresh token\n2. **zoom_list_recordings** - Get a list of user's cloud recordings\n3. **zoom_get_recording_details** - Get detailed information about a specific meeting recording\n4. **zoom_get_meeting_transcript** - Get transcript for a specific meeting recording\n\n### Tool Usage Examples\n\n#### Refreshing a token\n\n```json\n{\n  \"zoom_refresh_token\": \"your_refresh_token\",\n  \"zoom_client_id\": \"your_client_id\",\n  \"zoom_client_secret\": \"your_client_secret\"\n}\n```\n\n#### Listing recordings\n\n```json\n{\n  \"zoom_access_token\": \"your_access_token\",\n  \"from_date\": \"2023-01-01\",\n  \"to_date\": \"2023-01-31\",\n  \"page_size\": 30,\n  \"page_number\": 1\n}\n```\n\n#### Getting recording details\n\n```json\n{\n  \"zoom_access_token\": \"your_access_token\",\n  \"meeting_id\": \"meeting_id_here\"\n}\n```\n\n#### Getting meeting transcript\n\n```json\n{\n  \"zoom_access_token\": \"your_access_token\",\n  \"meeting_id\": \"meeting_id_here\"\n}\n```\n\n## OAuth Credential Handling\n\nThis server is designed to be completely \"noauth\" from its perspective:\n- No local authentication flow is needed\n- No credentials are stored on the server\n- All credentials are passed through tool arguments\n- The server can run in a headless environment\n\nTo use the tools, you'll need to obtain OAuth credentials from Zoom:\n1. Create a Zoom OAuth app in the Zoom Marketplace\n2. Configure the required scopes for recordings access\n3. Obtain access and refresh tokens through the OAuth flow\n4. Pass these tokens as arguments when calling the tools\n\n## Zoom API Reference\n\nThis project uses the Zoom API v2. For more information, refer to the [Zoom API documentation](https://developers.zoom.us/docs/api/).\n\n## License\n\n[Apache 2.0](LICENSE) ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeakmojo%2Fmcp-server-zoom-noauth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpeakmojo%2Fmcp-server-zoom-noauth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeakmojo%2Fmcp-server-zoom-noauth/lists"}