Clipping a four hour stream means ten round trips on the site. You paste the URL, you wait. You come back to start processing, you wait again. You sort, you schedule, account by account.
Starting today you can write one sentence to Claude instead. It imports, waits for the right moment, kicks off the render, ranks by score and schedules. You do something else while it works.
What you can ask
- Clip my last Twitch stream.
- Show me my 5 best clips this week.
- Schedule the top 3 on YouTube for tomorrow at 6pm.
- How many minutes do I have left?
- Which clip did best this month?
- My project failed, restart it.
Your assistant sees your projects, your clips with their viral potential score, your connected accounts, your remaining minutes and your publishing stats. Eighteen actions in total.
Set it up in two minutes
1. Create your key
In the app, go to Settings then Integrations. Create a key and copy it right away: it is shown only once.
2. Paste the config
For Claude Code, one line in your terminal.
claude mcp add --transport http streamclipping https://mcp.streamclipping.ai/mcp --header "Authorization: Bearer YOUR_KEY"For Codex, almost the same. Codex reads the key from an environment variable and never writes it to a file: set the variable, then add the server.
export STREAMCLIPPING_API_KEY="YOUR_KEY"
codex mcp add streamclipping --url https://mcp.streamclipping.ai/mcp --bearer-token-env-var STREAMCLIPPING_API_KEYFor Cursor and config file clients, a block to drop into your project .mcp.json.
{
"mcpServers": {
"streamclipping": {
"type": "http",
"url": "https://mcp.streamclipping.ai/mcp",
"headers": { "Authorization": "Bearer YOUR_KEY" }
}
}
}For the Anthropic API you declare the server and pass your key. Same idea on the OpenAI side with the Responses API.
"mcp_servers": [
{
"type": "url",
"url": "https://mcp.streamclipping.ai/mcp",
"name": "streamclipping",
"authorization_token": "YOUR_KEY"
}
]3. Ask
That is it. Open a conversation and ask for your account status to check that it answers.
What it does not do
We left three things out on purpose.
Fine editing stays on the site: framing, caption style, effects. An assistant will not pick those better than you.
TikTok stays manual. The platform requires a consent screen on every post, where you pick the privacy setting yourself. We are not going to work around that, the tool sends you back to the app to finish in two clicks.
Billing is closed. Your key can clip and publish. It cannot pay, cancel or delete your account.
What protects your account
- We never store your key in plain text, only its fingerprint.
- Revoke it whenever you want, it takes effect immediately.
- It opens nothing beyond what you can already do yourself: same quotas, same plan limits.
- A cap of 20 jobs per hour keeps a runaway assistant from burning your minutes.
- Every post needs an explicit confirmation from you.
Practical tip: one key per machine. Lose your laptop and you only cut that one.