Skip to main content
MCP (Model Context Protocol) is an open standard that connects AI tools to external services. CutPro offers two ways to connect, with different purposes:

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, at https://cut.pro/docs/mcp. With it, the AI searches and reads the pages to answer questions about the product. It does not run actions.
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, from analyze_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 mcp add cutpro \
  --env CUTPRO_API_KEY=YOUR_KEY \
  -- npx -y @cutpro/mcp

Claude Desktop, Cursor, Windsurf, VS Code

They all use the same MCP server configuration format:
{
  "mcpServers": {
    "cutpro": {
      "command": "npx",
      "args": ["-y", "@cutpro/mcp"],
      "env": { "CUTPRO_API_KEY": "YOUR_KEY" }
    }
  }
}
Multi-workspace key? Also add CUTPRO_WORKSPACE_ID to the env.

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_videosubmit_clippingget_submission (until done) → list_clipsrender_clipget_renderget_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:
1

Add the connector

In ChatGPT (Connectors) or Claude.ai (Settings → Connectors → Add custom connector), enter the server URL: https://mcp.cut.pro.
2

Authorize with your key

The client opens a consent page. Paste your API key. The key is validated and access is authorized.
3

Done

The client can now use CutPro’s tools in conversations.

Prefer to call the API directly? See the Quickstart with curl examples.
Last modified on June 2, 2026