Documentation MCP
Lets the AI answer questions about CutPro by reading the documentation. Read only.
API MCP (actions)
Lets the AI run the flow: analyze, clip, render, and download, using your API key.
Documentation MCP
A search server hosted on the docs themselves, athttps://cut.pro/docs/mcp. With it, the AI searches and reads the pages to answer questions about the product. It does not run actions.
- Claude
- Cursor / VS Code
- ChatGPT
In Settings → Connectors → Add custom connector, enter the URL
https://cut.pro/docs/mcp.API MCP (actions)
This server exposes all v1 API endpoints as tools (34 in total), covering workspace, balance, videos and uploads, clipping, clips, templates, renders, publishing, and connections. This way the AI runs the flow end to end, fromanalyze_video to create_post.
API access requires the Pro plan. Generate a key at API keys and use it as
CUTPRO_API_KEY.Claude Code
Claude Desktop, Cursor, Windsurf, VS Code
They all use the same MCP server configuration format:Usage example
Once connected, just ask in natural language:“Analyze this YouTube video, generate the clips, and send me the 3 highest-rated ones already rendered.”The AI chains the tools on its own:
analyze_video → submit_clipping → get_submission (until done) → list_clips → render_clip → get_render → get_render_download.
Remote and web (ChatGPT, Claude.ai)
The same server runs in remote HTTP mode (self-host) with full OAuth 2.1 (metadata discovery, dynamic client registration, PKCE, and tokens). To connect:Add the connector
In ChatGPT (Connectors) or Claude.ai (Settings → Connectors → Add custom connector), enter the server URL:
https://mcp.cut.pro.Authorize with your key
The client opens a consent page. Paste your API key. The key is validated and access is authorized.
Prefer to call the API directly? See the Quickstart with
curl examples.