npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@mindstone/mcp-server-opus-video-clip

v0.2.1

Published

OpusClip MCP server — turn long-form videos into short clips, manage projects, collections, censor jobs, and scheduled social posts through the OpusClip API

Readme

@mindstone/mcp-server-opus-video-clip

License: FSL-1.1-MIT

OpusClip MCP server for Model Context Protocol hosts. Turn long-form videos into short clips, manage projects, collections, censor jobs, and scheduled social posts through the OpusClip API.

Requirements

  • Node.js 20+
  • npm
  • An OpusClip API key (https://app.opus.pro/settings/integration-tokens)

One-click install

Add to Cursor Add to VS Code Add to VS Code Insiders

After clicking the button, your host will prompt you to fill: OPUS_API_KEY, OPUS_API_TIMEOUT_MS, OPUS_UPLOAD_TIMEOUT_MS, OPUS_BRIDGE_TIMEOUT_MS.

{
  "mcpServers": {
    "OpusClip": {
      "command": "npx",
      "args": [
        "-y",
        "@mindstone/mcp-server-opus-video-clip"
      ],
      "env": {
        "OPUS_API_KEY": "",
        "OPUS_API_TIMEOUT_MS": "120000",
        "OPUS_UPLOAD_TIMEOUT_MS": "600000",
        "OPUS_BRIDGE_TIMEOUT_MS": "30000"
      }
    }
  }
}

Quick Start

Install & build

cd <path-to-repo>/connectors/opus-video-clip
npm install
npm run build

npx (once published)

npx -y @mindstone/mcp-server-opus-video-clip

Local

node dist/index.js

Configuration

Environment variables

  • OPUS_API_KEY — OpusClip API key
  • MCP_HOST_BRIDGE_STATE — optional path to a host bridge state file used for credential management
  • MINDSTONE_REBEL_BRIDGE_STATE — backwards-compatible alias for MCP_HOST_BRIDGE_STATE
  • OPUS_API_TIMEOUT_MS — outbound HTTP timeout for general Opus API calls (default 120000 ms, max 30 min)
  • OPUS_UPLOAD_TIMEOUT_MS — per-chunk HTTP timeout for GCS resumable upload (default 600000 ms, max 30 min)
  • OPUS_BRIDGE_TIMEOUT_MS — HTTP timeout for the optional host-app bridge (default 30000 ms, max 30 min)
  • MCP_WORKSPACE_PATH — workspace directory for local-file access (see below)

Local-file sandbox

opus_upload_video (reads) and opus_download_clip (writes) are confined to a workspace sandbox: MCP_WORKSPACE_PATH when set, otherwise the system temp directory. Paths outside the sandbox — including .. traversal and symlinks that escape it — are refused. Place source videos inside the workspace (or temp) directory before uploading, and pick download targets inside it.

Host configuration examples

Claude Desktop / Cursor

{
  "mcpServers": {
    "OpusClip": {
      "command": "npx",
      "args": ["-y", "@mindstone/mcp-server-opus-video-clip"],
      "env": {
        "OPUS_API_KEY": "your-api-key"
      }
    }
  }
}

Local development (no npm publish needed)

{
  "mcpServers": {
    "OpusClip": {
      "command": "node",
      "args": ["<path-to-repo>/connectors/opus-video-clip/dist/index.js"],
      "env": {
        "OPUS_API_KEY": "your-api-key"
      }
    }
  }
}

Tools (22)

Configuration

  • configure_opus_api_key — Configure the OpusClip API key

Brand templates

  • opus_get_brand_templates — List brand templates

Project lifecycle

  • opus_create_project — Submit a long-form video URL for clipping (marked destructive)
  • opus_get_project — Retrieve a project's status, metadata, and clips
  • opus_get_clips — Retrieve clips generated for a project (surfaces pagination metadata: total/next/limit)
  • opus_share_project — Update a project's sharing visibility (marked destructive)

Upload

  • opus_upload_video — Upload a local video file and create a clip project (orchestrates the 4-step GCS resumable upload; reads confined to the workspace sandbox; marked destructive)

Downloads

  • opus_download_clip — Download an exported clip MP4 to a local file inside the workspace sandbox. Only OpusClip CDN / Google Cloud Storage hosts are accepted; hostnames are DNS-resolved and every resolved address must be public

Censor jobs

  • opus_create_censor_job — Create a censor job for a clip (marked destructive)
  • opus_get_censor_job_status — Poll the status of a censor job

Collections

  • opus_create_collection — Create a clip collection (marked destructive)
  • opus_get_collections — List your collections
  • opus_export_collection — Export all clips from a collection
  • opus_delete_collection — Delete a collection (clips themselves are preserved)

Collection contents

  • opus_add_clip_to_collection — Add a clip to an existing collection
  • opus_remove_clip_from_collection — Remove a clip from a collection (uses Opus's POST-to-delete idiom)

Social posting

  • opus_get_social_accounts — List connected social accounts
  • opus_create_social_copy_job — Generate platform-specific social copy for a clip
  • opus_get_social_copy_job — Retrieve the result of a social-copy job
  • opus_publish_post — Publish a clip to a connected social account immediately (marked destructive)
  • opus_schedule_post — Schedule a clip for future publishing (marked destructive)
  • opus_cancel_scheduled_post — Cancel a scheduled social post

External text returned by the Opus API (project/clip titles, template and collection names, social account display names, generated social copy, upstream error strings and error bodies, job statuses, and continuation tokens) is wrapped in <untrusted-content> envelopes so the model treats it as data, not instructions.

Licence

FSL-1.1-MIT — Functional Source License, Version 1.1, with MIT future licence. The software converts to MIT licence on 2030-05-19.