/ ディレクトリ / プレイグラウンド / Claude Video Vision
● コミュニティ jordanrendric ⚡ 即起動

Claude Video Vision

作者 jordanrendric · jordanrendric/claude-video-vision

Make Claude actually understand a video — frames + transcript + scene segmentation, fed in a token-efficient layout.

The skill takes a video file or URL, extracts keyframes (scene-aware), aligns transcript segments, and presents the bundle to Claude for QA, summary, or content extraction. Smart-sampling avoids blowing the context window.

なぜ使うのか

主な機能

ライブデモ

実際の動作

準備完了

インストール

クライアントを選択

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "claude-video-vision": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/jordanrendric/claude-video-vision"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config を開く。保存後、アプリを再起動。

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "claude-video-vision": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/jordanrendric/claude-video-vision"
      ],
      "_inferred": true
    }
  }
}

Cursor は Claude Desktop と同じ mcpServers スキーマを使用。プロジェクト設定はグローバルより優先。

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "claude-video-vision": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/jordanrendric/claude-video-vision"
      ],
      "_inferred": true
    }
  }
}

Cline サイドバーの MCP Servers アイコンをクリックし、"Edit Configuration" を選択。

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "claude-video-vision": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/jordanrendric/claude-video-vision"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop と同じ形式。Windsurf を再起動して反映。

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "claude-video-vision",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/jordanrendric/claude-video-vision"
      ]
    }
  ]
}

Continue はマップではなくサーバーオブジェクトの配列を使用。

~/.config/zed/settings.json
{
  "context_servers": {
    "claude-video-vision": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/jordanrendric/claude-video-vision"
        ]
      }
    }
  }
}

context_servers に追加。保存時に Zed がホットリロード。

claude mcp add claude-video-vision -- git clone https://github.com/jordanrendric/claude-video-vision

ワンライナー。claude mcp list で確認、claude mcp remove で削除。

ユースケース

実用的な使い方: Claude Video Vision

Answer questions about a 30-min talk

👤 Claude Code users ⏱ ~15 min intermediate

使うタイミング: Conference talk just dropped; you want notes without watching it.

フロー
  1. Ingest
    Point skill at the URL.✓ コピーしました
    → Frames + transcript ready
  2. Ask
    Ask focused questions; skill scopes to relevant scenes.✓ コピーしました
    → Precise answers with timestamps

結果: Targeted understanding without re-watching.

組み合わせ

他のMCPと組み合わせて10倍の力を

claude-video-vision + filesystem

Save the structured note output for later reference

Combine claude-video-vision with filesystem: Save the structured note output for later reference✓ コピーしました

ツール

このMCPが提供する機能

ツール入力呼び出すタイミングコスト
ingest (see docs) Pull video + transcript 1 call
query (see docs) Scope-aware question answering 1 call

コストと制限

運用コスト

APIクォータ
Bound by transcription cost
呼び出しあたりのトークン
Mid (sampled, not full video)
金額
Free skill; transcription/model costs
ヒント
Use shorter scenes when QA is targeted; use long-window mode for summary

セキュリティ

権限、シークレット、影響範囲

最小スコープ: fs-read fs-write
認証情報の保管: API keys for transcription provider in env
データ送信先: Transcription provider
絶対に付与しない: process private video without consent

トラブルシューティング

よくあるエラーと対処法

Transcript misaligned

Lower scene-segmentation threshold; transcript may be off due to music

代替案

Claude Video Vision 他との比較

代替案代わりに使う場面トレードオフ
Manual notesTalk is shortDoesn't scale to many videos

その他

リソース

📖 GitHub の公式 README を読む

🐙 オープンな issue を見る

🔍 400以上のMCPサーバーとSkillsを見る