zoom-ai-mcp
Provides tools for audio transcription, transcript summarization, and text translation using Zoom AI Services APIs (Scribe, Summarizer, Translator).
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@zoom-ai-mcpTranscribe meeting.mp3 and summarize key points"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
zoom-ai-mcp
Zoom AI Services の3つの API(Scribe / Translator / Summarizer)を MCP ツールとして公開するサーバーです。
Claude Code などの MCP クライアントに接続すると、エージェントに音声ファイルを渡して「何が録音されてるか教えて。英訳も欲しい」のように頼めるようになります。文字起こし → 翻訳のような API の呼び分けはエージェントが自分で判断するので、処理ごとのパイプラインを書く必要はありません。
ツール
ツール | 使用API | できること |
| Scribe | 音声/動画の文字起こし(wav / mp3 / m4a / mp4、ローカルパスまたはURL) |
| Summarizer | 会話テキストの要約(recap / action_items / summary / full_summary) |
| Translator | 9言語間のテキスト翻訳。4,000字を超える入力は文境界で自動分割 |
Related MCP server: Zoom API MCP Server
必要なもの
Node.js 18 以上
Zoom Build Platform の API Key / Secret
セットアップ
git clone https://github.com/rai03k/zoom-ai-mcp.git
cd zoom-ai-mcp
npm install
npm run buildClaude Code に登録:
claude mcp add zoom-ai \
-e ZOOM_API_KEY=your_api_key \
-e ZOOM_API_SECRET=your_api_secret \
-- node /path/to/zoom-ai-mcp/dist/index.jsClaude Desktop の場合は claude_desktop_config.json に以下を追加:
{
"mcpServers": {
"zoom-ai": {
"command": "node",
"args": ["/path/to/zoom-ai-mcp/dist/index.js"],
"env": {
"ZOOM_API_KEY": "your_api_key",
"ZOOM_API_SECRET": "your_api_secret"
}
}
}
}使い方
エージェントに普通に話しかけるだけです。
meeting.mp3 で何が決まったか教えて。決定事項は英語でもまとめて。
transcribe_audio → summarize_transcript → translate_text が必要な順で自動的に呼ばれます。
実装メモ
認証は API Key / Secret から HS256 の JWT を生成して Bearer 送信(
src/zoom.ts)。外部の JWT ライブラリは使っていませんTranslator API の入力4,000字制限は、段落・文境界で分割してから順に翻訳することで吸収しています
動作確認用の音声は zoom/ai-services-quickstart の
sample_data/にあるサンプルが使えます(ライセンスの関係で本リポジトリには同梱していません)
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables interaction with Zoom services through the Zoom API. Provides access to meeting management, user administration, and other Zoom platform features through natural language commands.Last updated
- Flicense-qualityDmaintenanceEnables interaction with Zoom services through the Zoom API. Provides access to Zoom's functionality for meeting management, user operations, and platform features through natural language.Last updated
- FlicenseAquality-maintenanceProvides access to Whissle AI services for speech-to-text, speaker diarization, translation, and text summarization. It enables users to process various audio formats and manage text content through natural language tools.Last updated5
- Flicense-qualityCmaintenanceProvides translation and language detection tools to AI agents, processing text, audio, and Google Meet recordings with emotional voice style preservation via Google's Gemini Live API.Last updated
Related MCP Connectors
15 media & data tools for AI agents: search, transcribe, subtitles, voiceover, translate & more.
Search recordings, summarize meetings, create clips, and automate workflows from your AI assistant.
Runtime permission, approval, and audit layer for AI agent tool execution.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rai03k/zoom-ai-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server