clipcliper
Processes Kick VOD links to generate timestamped transcripts, chapters, and clip suggestions.
Processes TikTok video links to generate timestamped transcripts, chapters, and clip suggestions.
Processes Twitch VOD links to generate timestamped transcripts, chapters, and clip suggestions.
Processes YouTube video, Short, and live replay links to generate timestamped transcripts, chapters, and clip suggestions.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@clipcliperTranscribe this video and suggest clips: https://youtu.be/dQw4w9WgXcQ"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
CLIPCLIPER MCP server
Give your agent a public video link and get back a timestamped transcript, chapters and clip suggestions. Works with YouTube (videos, shorts, live replays), Twitch VODs, Kick VODs and TikTok, including the platforms that block datacenter IPs.
The server is hosted: nothing to download or run on GPUs. The video is fetched, transcribed with Whisper large-v3 and deleted; only the transcript stays, for 24 hours.
Tools
Tool | What it does |
| Full transcript with timestamps. Formats: |
| Topic chapters: |
| The most shareable moments for short-form clips: |
All three take a url. Processing is asynchronous: a call waits up to wait_seconds
(default 90) and, if the video is still downloading or transcribing, returns
status: "processing". Call the same tool again with the same url; the job keeps running on
the server and nothing is charged twice. Results are cached for 24 hours per url.
Related MCP server: YouTube for AI Agents
Connect
Listed on Smithery (one-click setup for Claude, Cursor and other clients) and submitted to the Glama registry.
Remote (recommended), Streamable HTTP:
https://clipcliper.com/mcp
Authorization: Bearer <your license key>Claude Code:
claude mcp add --transport http clipcliper https://clipcliper.com/mcp --header "Authorization: Bearer YOUR_KEY"Claude Desktop, Cursor and other clients that take a JSON config (remote):
{
"mcpServers": {
"clipcliper": {
"type": "http",
"url": "https://clipcliper.com/mcp",
"headers": { "Authorization": "Bearer YOUR_KEY" }
}
}
}Local bridge (stdio) for clients that cannot call a URL directly:
{
"mcpServers": {
"clipcliper": {
"command": "npx",
"args": ["-y", "clipcliper-mcp"],
"env": { "CLIPCLIPER_LICENSE_KEY": "YOUR_KEY" }
}
}
}The bridge is this repository: a ~100-line process that speaks MCP over stdio and forwards
every call to the hosted endpoint with your key. Until the npm package is published you can run
it straight from GitHub: npx -y github:Inmoprice/clipcliper-mcp.
Keys and pricing
Without a key: each IP can process 3 videos per day of up to 15 minutes. Good for trying it.
With a key: minute packs at clipcliper.com/mcp, one-time, minutes never expire:
Pack | Price | Minutes | Per minute |
Starter | USD 9 | 600 | USD 0.015 |
Pro | USD 29 | 3,000 | USD 0.0097 |
Scale | USD 79 | 12,000 | USD 0.0066 |
Every video costs one pack minute per started minute of video; chapters and clip suggestions on
a transcribed video are free. The license key is emailed to you right after checkout. Send it
as Authorization: Bearer <key> (or X-License-Key); it never goes in tool arguments or URLs.
Hour packs of the CLIPCLIPER desktop app also work here (one pack hour per started hour).
REST
Prefer plain HTTP? The same pipeline is available at
POST https://clipcliper.com/api/link/transcribe, /api/link/chapters and /api/link/suggest
with a JSON body {"url": "..."} and the same header. 202 while processing, 200 when done.
Privacy
The video file is deleted as soon as the transcript exists; the transcript expires after 24 h.
No accounts, no cookies. Usage is counted per key (hours) or per IP hash (free tier).
Questions: support@clipcliper.com
License
MIT for the code in this repository (the bridge). The hosted service is subject to clipcliper.com's terms.
Available Tools
3 toolsget_chaptersGet chaptersARead-onlyInspect
Split a public video into topic chapters (start/end seconds, title, one-line summary) from its transcript. Transcribes the video first if needed (same cost and async behaviour as get_transcript); the chapters themselves are free and cached.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public video URL: YouTube video/short/live replay, Twitch VOD, Kick VOD or TikTok video. | |
| language | No | Spoken language of the video as ISO-639-1 (e.g. 'en', 'es'). Omit to auto-detect. | |
| max_chapters | No | Upper bound of chapters (default 12). | |
| wait_seconds | No | Seconds to wait for processing before returning status 'processing' (default 90). Long videos can take several minutes: just call again. | |
| output_language | No | Language for titles and summaries (ISO-639-1). Default: the language of the video. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations only declare readOnlyHint and openWorldHint, so the description carries the burden of behavioral disclosure. It explicitly states that the video is transcribed first if needed (same cost and async behaviour as get_transcript), that chapters are free and cached, and implies async behavior via the wait_seconds parameter. This adds significant context beyond the annotations without contradiction.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no fluff. The first sentence front-loads the core purpose and output structure; the second adds behavioral context. Every word earns its place, making it concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description explains the output shape (chapters with start/end, title, summary) and the async/cost context, which covers the key information an agent needs. It does not explicitly mention the 'processing' status that wait_seconds can return, but that is covered in the schema. Given the lack of an output schema, the description provides adequate context for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with all 5 parameters already documented in the schema. The description does not add any parameter-specific meaning beyond what the schema provides. Per the rubric, with high schema coverage the baseline is 3, and no additional value is added.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb (split) and resource (public video into topic chapters) with details on output (start/end seconds, title, one-line summary). It also differentiates from get_transcript by noting it uses the transcript and has same cost/async behavior, clearly distinguishing its purpose from the sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives context by comparing to get_transcript (same cost and async behaviour) and notes that chapters are free/cached, which implies a good use case. However, it does not explicitly state when to use this instead of get_transcript or suggest_clips, nor any when-not conditions. The guidance is clear enough but lacks explicit exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_transcriptGet transcriptARead-onlyInspect
Download a public video (YouTube, Twitch VOD, Kick VOD, TikTok) and return its full transcript with timestamps (Whisper large-v3). Asynchronous: if it returns status 'processing', call again with the same url. Results are cached 24 h per url. With a license key it costs one pack minute per started minute of video (minute packs at https://clipcliper.com/mcp; desktop hour packs cost one hour per started hour); without a key, videos up to 15 min (daily limit per IP).
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public video URL: YouTube video/short/live replay, Twitch VOD, Kick VOD or TikTok video. | |
| format | No | 'timestamped' (default, one line per segment: [m:ss] text), 'text' (plain), 'srt' (subtitles) or 'segments' (JSON array of {start,end,text}). | |
| language | No | Spoken language of the video as ISO-639-1 (e.g. 'en', 'es'). Omit to auto-detect. | |
| max_chars | No | Truncate the transcript to this many characters (default 150000). A 1 h talk is ~50000 chars. | |
| wait_seconds | No | Seconds to wait for processing before returning status 'processing' (default 90). Long videos can take several minutes: just call again. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations provide readOnlyHint=true and openWorldHint=true, and the description goes well beyond these by disclosing asynchronous behavior (returns 'processing'), caching (24h per url), pricing (pack minutes), and limits (15 min without key, daily IP limit). No contradiction with annotations; it adds substantial behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, each adding value: purpose, async retry, caching, and pricing/limits. It front-loads the core function and avoids fluff. Slightly dense but efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (async, pricing, limits, multiple formats) and lack of an output schema, the description covers the key behaviors and mentions the transcript with timestamps. It does not describe the full response structure, but the format parameter covers output variants. It is adequate for an agent to call correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so all parameters are already well documented in the schema. The description adds behavioral context (e.g., 'just call again' relates to wait_seconds) but does not add meaning beyond what the schema provides. Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Download') and resource ('public video') and explicitly names the output ('full transcript with timestamps'). It distinguishes itself from siblings (get_chapters, suggest_clips) by being about the full transcript, so an agent can tell it apart without opening other tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context about when to call again (async processing) and mentions limits (15 min without key), but it does not explicitly state when to use this tool versus get_chapters or suggest_clips, nor does it provide exclusions. Usage is implied by the purpose but not contrasted with alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
suggest_clipsSuggest clipsARead-onlyInspect
Find the most shareable moments of a public video for short-form clips: start/end seconds aligned to speech, a hook-style title in the video's language and why it works. Transcribes the video first if needed (same cost and async behaviour as get_transcript). Suggestions are free per call.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | Public video URL: YouTube video/short/live replay, Twitch VOD, Kick VOD or TikTok video. | |
| count | No | How many clips (default 5; hard cap is one clip per 30 s of video, minimum 20). | |
| language | No | Spoken language of the video as ISO-639-1 (e.g. 'en', 'es'). Omit to auto-detect. | |
| instruction | No | Editorial guidance, e.g. 'moments about pricing' or 'funny moments only'. | |
| max_seconds | No | Longest clip in seconds (default 90). | |
| min_seconds | No | Shortest clip in seconds (default 20). | |
| wait_seconds | No | Seconds to wait for processing before returning status 'processing' (default 90). Long videos can take several minutes: just call again. | |
| reason_language | No | Language for the 'reason' field (ISO-639-1, default 'en'). Titles always follow the video's language. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark this as read-only and open-world, so the description adds value by disclosing that transcription may happen first, that behavior matches get_transcript, and that suggestions are free per call. This goes beyond what the annotations alone convey. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact, front-loaded with the core capability, and every sentence adds value: what it returns, when it transcribes, and cost/async behavior. No filler or redundant restating of the title.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no output schema, the description covers the return shape (seconds, title, reason), cost, and async behavior. Combined with detailed parameter descriptions and annotations, it is largely complete, though it does not explicitly explain the 'processing' status flow that wait_seconds references.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already covers 100% of parameters with descriptions, so the baseline is 3. The tool description adds some high-level output context but does not enrich the meaning of specific parameters like count, wait_seconds, or reason_language beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific action ('Find'), a specific resource ('most shareable moments of a public video'), and concrete deliverables: start/end seconds, a hook-style title, and a reason. This clearly differentiates suggest_clips from the sibling tools get_transcript and get_chapters.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives useful context by noting it transcribes the video first and shares cost/async behavior with get_transcript, but it never explicitly states when to choose this tool over the siblings or when not to use it. Usage is implied by the purpose rather than clearly routed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
3 tool updates
v1.0.0- First observed
get_chapters - First observed
get_transcript - First observed
suggest_clips
TDQS
Scored across 3 tools
Each tool has a distinct output: full transcript vs. topic chapters vs. shareable clip suggestions. Overlap in video preprocessing is clearly explained in descriptions, so an agent can reliably select the right tool.
All tool names follow a consistent verb_noun pattern: get_transcript, get_chapters, suggest_clips. The prefix 'get_' versus 'suggest_' matches the action precisely, with no mixed naming styles.
Three tools is a well-scoped set for a video transcription and clip suggestion server. Each tool earns its place and covers a distinct stage of the workflow without redundancy.
The surface covers the core workflow of transcribing a video, generating chapters, and finding clip moments. Minor gaps exist (e.g., no video metadata retrieval or actual clip export), but the primary use case is fully supported.
Maintenance
Related MCP Connectors
Transcribe public videos & audio (YouTube, TikTok, IG) into accurate, timestamped text via API.
Turn a TikTok/Instagram/YouTube link into text for your AI: metadata, transcript and image OCR.
Get transcripts from YouTube, TikTok, X, Instagram and more - even when captions are off.
Any video URL to LLM-ready transcript. ASR built in, no captions needed. TikTok, X, TED and more.
Related MCP Servers
- AlicenseBqualityCmaintenanceAnalyze YouTube, TikTok, and Instagram videos from URL. Extracts transcripts, generates AI insights, and pulls tutorial steps from any video link.1825 PyPI3MIT
- AlicenseAqualityDmaintenanceEnables AI agents to search, watch, summarize, clip, and extract transcripts from YouTube videos, all without needing an API key or leaving the chat.919 npm52Apache 2.0
- AlicenseAqualityCmaintenanceEnables AI agents to download, transcribe, and inspect video or audio URLs from YouTube, TikTok, X, and 1000+ other sites using server-side yt-dlp, residential proxies, and speech-to-text.916 npmMIT
- AlicenseNot gradedqualityDmaintenanceTransforms social media links (TikTok, Instagram, YouTube) and videos into text context with transcription, OCR, and metadata for AI agents like Claude and Cursor.MIT