Find any clip. Across any number of videos.

A Claude Code skill for video search. Use /clipsight:upload, /clipsight:video-search, and /clipsight:download to find any clip across your videos.

clipsight

Searching through video is broken

Manual scrubbing

Creators spend hours fast-forwarding through footage, hoping they don't miss the exact moment they need.

🔍

No text search for video

You can search documents, code, and emails instantly. But video? You're stuck watching it in real time.

📈

Existing tools don't scale

Editing software handles one file at a time. Need to search across 100 videos? Good luck.

Three skills. That's it.

Use ClipSight skills in Claude Code to upload, search, and download video clips.

1

/clipsight:upload

Run this skill in Claude Code to scan your directory, find video files, and upload them to the cloud for indexing.

2

Cloud AI indexes your videos

Once uploaded, cloud AI analyzes every frame — objects, scenes, actions, text, speech — and builds a searchable index.

3

/clipsight:video-search

Run this skill with a natural language query. Results come back with timestamps and confidence scores.

4

/clipsight:download

Download matching clips to your local machine, trimmed and ready to use.

See it in action

Upload 23 wedding videos, search for first-dance clips, and download the results — each with a simple skill command.

clipsight — live demo

Built for real workflows

Works from your terminal

No GUI, no browser tabs. ClipSight runs as a Claude Code plugin — right where you already work.

💬

Natural language search

"Find all sunset scenes with calm music." Describe what you want, not which file it's in.

🚀

Scales to hundreds of videos

Upload an entire library. The cloud index handles the heavy lifting — search across all of it at once.

Install ClipSight

Pick the setup that fits your workflow.

# No API key needed — OAuth handles auth automatically
 
1. Open Claude Desktop (or claude.ai)
2. Go to Settings → Connectors → Add custom connector
3. Enter the server URL:
https://clipsight.ai/mcp
4. Click Connect and complete the OAuth sign-in flow
5. The ClipSight connector will appear connected — start searching!
# Open Claude Code and paste this message:
 

I want to add the ClipSight MCP server to search and manage videos. Please run this command for me:

 
$ claude mcp add --transport http clipsight-mcp https://clipsight.ai/mcp --header "Authorization: Bearer YOUR_API_KEY"
 
# Replace YOUR_API_KEY with your key from clipsight.ai/dashboard
# Claude will run the command and confirm the setup for you
# Step 1: Add the marketplace
$ claude plugin marketplace add deepvideolab-ai/clipsight-plugin
 
# Step 2: Install the plugin
$ claude plugin install clipsight@clipsight-plugin
 
# Step 3: Set your API token (get one at clipsight.ai/dashboard)
$ export CLIPSIGHT_MCP_TOKEN='your-api-token-here'
 
# Start searching!
$ claude
> Find sunset scenes in ./vacation-footage
# Set your API token (get one at clipsight.ai/dashboard)
$ export CLIPSIGHT_MCP_TOKEN='your-api-token-here'
 
# Add the MCP server
$ claude mcp add \
--transport http \
clipsight-mcp \
https://clipsight.ai/mcp \
--header "Authorization: Bearer $CLIPSIGHT_MCP_TOKEN"
 
# Verify it's connected
$ claude mcp list
# Set your API token (get one at clipsight.ai/dashboard)
$ export CLIPSIGHT_MCP_TOKEN='your-api-token-here'
 
# Add the MCP server
$ codex mcp add \
--url https://clipsight.ai/mcp \
--bearer-token-env-var CLIPSIGHT_MCP_TOKEN \
clipsight-mcp
 
# Verify it's connected
$ codex mcp list

Setup — Permissions for Video Uploads

Video uploads may ask for permission each time, depending on your configuration. For Claude Code, you can alleviate this by adding the following to your ~/.claude/settings.json:

{
  "allowedTools": [
    "Bash(curl*)",
    "Bash(cd * && curl*)"
  ]
}

If ~/.claude/settings.json doesn't exist yet, create it with just that content.

Get Your API Token