jpskill.com
🛠️ 開発・MCP コミュニティ

zoom-mcp/whiteboard

Guidance for the bundled Zoom Whiteboard MCP connector. Use for Whiteboard MCP auth, endpoints, ID mapping, and tool workflows such as list_whiteboards and get_a_whiteboard. Prefer this skill when the request is specifically about Whiteboard MCP rather than general Zoom MCP.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o zoom-mcp-whiteboard.zip https://jpskill.com/download/22727.zip && unzip -o zoom-mcp-whiteboard.zip && rm zoom-mcp-whiteboard.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/22727.zip -OutFile "$d\zoom-mcp-whiteboard.zip"; Expand-Archive "$d\zoom-mcp-whiteboard.zip" -DestinationPath $d -Force; ri "$d\zoom-mcp-whiteboard.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して zoom-mcp-whiteboard.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → zoom-mcp-whiteboard フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
3

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

Zoom MCP Whiteboard

Zoom の Whiteboard MCP サーバーに関する専用のガイダンスです。

エンドポイント

トランスポート URL
Streamable HTTP (推奨) https://mcp-us.zoom.us/mcp/whiteboard/streamable
SSE (フォールバック) https://mcp-us.zoom.us/mcp/whiteboard/sse

認証

  • Whiteboard スコープを持つユーザー OAuth は、list_whiteboards および get_a_whiteboard の検証済みの動作パスです。
  • S2S OAuth は Whiteboard MCP ゲートウェイに到達し、tools/list を完了できますが、ツール実行はアプリと Whiteboard スコープに対して個別に検証する必要があります。
  • 実用的なルール:必要な Whiteboard スコープで S2S アプリがミントおよび実行できることをすでに証明している場合を除き、Whiteboard MCP にはユーザー OAuth から始めてください。
  • バンドルされたコネクタは、ZOOM_WHITEBOARD_MCP_ACCESS_TOKEN にトークンを期待します。

参照:references/authentication-and-identifiers.md

必要なスコープ

Whiteboard MCP の読み取りスコープ:

  • whiteboard:read:list_whiteboards
  • whiteboard:read:whiteboard

ゲートウェイによってアドバタイズされる書き込み可能な Whiteboard メタデータ:

  • whiteboard:write:whiteboard

Whiteboard ID マッピング

Whiteboard MCP では、/p/ の後の数値セグメントではなく、/wb/db/ の後の URL セグメントから識別子を使用してください。

例:

https://us05whiteboard.zoom.us/wb/db/6iktP8hJT3e5qaCuwFuAGg/p/180968285929472
                                     ^^^^^^^^^^^^^^^^^^^^^^   ^^^^^^^^^^^^^^^
                                     whiteboard_id            page/subresource id

利用可能なツール

現在の Whiteboard MCP ツールサーフェスは次のとおりです。

  • create_a_whiteboard_for_brainstorming
  • list_whiteboards
  • create_a_whiteboard
  • get_a_whiteboard
  • create_a_whiteboard_by_script
  • update_a_whiteboard_metadata
  • create_a_whiteboard_for_meeting_summary
  • create_a_whiteboard_for_strategy_analysis

一部の MCP クライアントは、UI でサーバーツールを名前空間化します。上記の生のツール名を権威あるものとして扱ってください。

参照:references/tools.md

読み取りワークフロー

  1. Whiteboard 読み取りスコープを持つユーザー OAuth トークンを使用します。
  2. list_whiteboards を呼び出して、アクセス可能なホワイトボードを検出し、正しい whiteboard_id を確認します。
  3. その whiteboard_id を使用して get_a_whiteboard を呼び出します。

チェイニング

参照

📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Zoom MCP Whiteboard

Dedicated guidance for Zoom's Whiteboard MCP server.

Endpoints

Transport URL
Streamable HTTP (recommended) https://mcp-us.zoom.us/mcp/whiteboard/streamable
SSE (fallback) https://mcp-us.zoom.us/mcp/whiteboard/sse

Authentication

  • User OAuth with Whiteboard scopes is the verified working path for list_whiteboards and get_a_whiteboard.
  • S2S OAuth can reach the Whiteboard MCP gateway and complete tools/list, but tool execution must be validated separately for your app and Whiteboard scopes.
  • Practical rule: start with user OAuth for Whiteboard MCP unless you have already proven your S2S app can mint and execute with the required Whiteboard scopes.
  • The bundled connector expects the token in ZOOM_WHITEBOARD_MCP_ACCESS_TOKEN.

Reference: references/authentication-and-identifiers.md

Required Scopes

Whiteboard MCP read scopes:

  • whiteboard:read:list_whiteboards
  • whiteboard:read:whiteboard

Write-capable Whiteboard metadata advertised by the gateway:

  • whiteboard:write:whiteboard

Whiteboard ID Mapping

For Whiteboard MCP, use the identifier from the URL segment after /wb/db/, not the numeric segment after /p/.

Example:

https://us05whiteboard.zoom.us/wb/db/6iktP8hJT3e5qaCuwFuAGg/p/180968285929472
                                     ^^^^^^^^^^^^^^^^^^^^^^   ^^^^^^^^^^^^^^^
                                     whiteboard_id            page/subresource id

Available Tools

The current Whiteboard MCP tool surface is:

  • create_a_whiteboard_for_brainstorming
  • list_whiteboards
  • create_a_whiteboard
  • get_a_whiteboard
  • create_a_whiteboard_by_script
  • update_a_whiteboard_metadata
  • create_a_whiteboard_for_meeting_summary
  • create_a_whiteboard_for_strategy_analysis

Some MCP clients namespace server tools in the UI. Treat the raw tool names above as authoritative.

Reference: references/tools.md

Read Workflow

  1. Use a user OAuth token with the Whiteboard read scopes.
  2. Call list_whiteboards to discover accessible whiteboards and confirm the correct whiteboard_id.
  3. Call get_a_whiteboard with that whiteboard_id.

Chaining

References

同梱ファイル

※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。