Back to Browse

Clipcliper MCP Server

Developer ToolsLow Risk10.0MCP RegistryRemote
Free

Server data from the Official MCP Registry

Timestamped transcripts, chapters and clip suggestions from YouTube, Twitch, Kick or TikTok links.

About

Timestamped transcripts, chapters and clip suggestions from YouTube, Twitch, Kick or TikTok links.

Remote endpoints: streamable-http: https://clipcliper.com/mcp

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (3 strong, 4 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

3 tools verified · Open access · No issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

file_system

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "com-clipcliper-clipcliper": {
      "url": "https://clipcliper.com/mcp"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

CLIPCLIPER MCP server

smithery badge

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

ToolWhat it does
get_transcriptFull transcript with timestamps. Formats: timestamped (default), text, srt, segments (JSON).
get_chaptersTopic chapters: start, end, title, one-line summary.
suggest_clipsThe most shareable moments for short-form clips: start, end, hook-style title, reason. Accepts an editorial instruction.

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.

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:
PackPriceMinutesPer minute
StarterUSD 9600USD 0.015
ProUSD 293,000USD 0.0097
ScaleUSD 7912,000USD 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.

Reviews

No reviews yet

Be the first to review this server!