Connect Claude Desktop or Claude Code to ShaynCut for AI-powered video editing
shayntech-video-editor v1.0.0MCP (Model Context Protocol) lets Claude connect directly to ShaynCut's video engine. Instead of using the web editor manually, you tell Claude what to do in natural language and it processes the video for you.
Example: "Download this video, trim the first 30 seconds, speed it up 2x, and add background music" โ Claude does it all in one command.
Follow these steps to connect ShaynCut to your Claude Desktop app:
Click on your profile icon (top-right corner) โ Settings
In the left sidebar, click Connector (or Developer in older versions)
Click "Add Custom Connector" or the "+" button
Enter the following:
Click Save or Connect. Claude will automatically discover 11 video editing tools.
You'll see a hammer icon ๐จ in your chat โ that means ShaynCut is connected!
For developers using Claude Code in the terminal:
cd your-project
Create a file named .mcp.json in your project root:
{
"mcpServers": {
"shayncut": {
"url": "https://shayncut.tech/mcp"
}
}
}
Start Claude Code in that directory โ it will auto-detect the MCP server.
claude
Alternative method โ edit the config file directly:
Click your profile โ Settings โ Developer โ Edit Config
{
"mcpServers": {
"shayncut": {
"url": "https://shayncut.tech/mcp"
}
}
}
Close and reopen Claude Desktop. You'll see the ๐จ icon with 11 tools ready.
Claude discovers these automatically when connected:
You: "I have a raw video at https://example.com/raw.mp4.
Trim from 0:30 to 2:00, add background music from
https://example.com/bg.mp3 at 30% volume, and convert to GIF."
Claude:
1. Downloads raw.mp4 (via download_file)
2. Trims 0:30โ2:00 (via trim_video)
3. Downloads bg.mp3 (via download_file)
4. Adds background music at 30% volume (via add_audio)
5. Converts to GIF (via convert_format)
6. Returns: https://shayncut.tech/output/result_xxx.gif
| MCP URL | https://shayncut.tech/mcp |
| Health Check | GET /health |
| Max File Size | 500 MB |
| Max Duration | 10 minutes |
| Input Formats | MP4, AVI, MOV, MKV, WebM, GIF, images, audio |
| Output Formats | MP4, WebM, GIF, AVI, MOV, MP3, WAV |