pypi clipmaster-mcpstdioupdated 25d ago
mcp-name: io.github.n0Sp00n/clipmaster-mcp
What can you do with clipmaster mcp?
clipmaster-mcp
mcp-name: io.github.n0Sp00n/clipmaster-mcp
MCP (Model Context Protocol) server for ClipMaster — AI video clipping at clipmaster.app. It exposes the ClipMaster public API as tools, so Claude Desktop, Claude Code, and any MCP client can ingest videos, monitor processing, browse clips, trigger exports, and schedule posts.
- Talks ONLY to the public REST API (
https://api.clipmaster.app/api/v1) with the user's API key — no database access, no internal services. - Ingestion is URL-only by design (streaming a local file through an LLM tool call is impractical). Account management (keys, billing, OAuth connects) is excluded; the API rejects those routes for key auth anyway.
Requirements
- Python 3.10+
- A ClipMaster API key (paid plans): web app → Settings → API access
Install
From this repo checkout:
pipx install ./clipmaster-mcp
# or, without installing:
uvx --from ./clipmaster-mcp clipmaster-mcp
Configure
| Env var | Required | Meaning |
|---|---|---|
CLIPMASTER_API_KEY |
yes* | Your cm_live_… API key |
CLIPMASTER_API_BASE |
no | Override the API base URL (default https://api.clipmaster.app/api/v1) |
*Instead of the env var you can put the key in ~/.config/clipmaster/key —
this keeps it out of client config files and shell history:
mkdir -p ~/.config/clipmaster && printf '%s' 'cm_live_...' > ~/.config/clipmaster/key && chmod 600 ~/.config/clipmaster/key
The env var wins when both are set.
Claude Code
claude mcp add clipmaster -e CLIPMASTER_API_KEY=cm_live_... -- clipmaster-mcp
Claude Desktop
claude_desktop_config.json:
{
"mcpServers": {
"clipmaster": {
"command": "clipmaster-mcp",
"env": { "CLIPMASTER_API_KEY": "cm_live_..." }
}
}
}
Tools
| Tool | What it does |
|---|---|
ingest_youtube(url, orientation?, user_query?, compilation_format?) |
Import a YouTube video, start clip generation |
get_status(project_id) |
Processing progress / state |
list_projects() |
The user's projects |
list_clips(project_id) |
Generated clips with AI metadata |
get_clip(project_id, clip_id) |
Full detail for one clip |
trigger_export(project_id, clip_id) |
Render a clip with its saved settings (charges tokens) |
get_export_status(export_id) |
Poll an export; completed → temporary download_url |
list_compilations(source_project_id?) / get_compilation(id) |
Cross-project clip collections |
list_social_accounts() |
Connected channels for scheduling |
schedule_post(...) |
Schedule an export to publish (idempotent on retry) |
list_scheduled_posts(from_date, to_date) |
Posting calendar range |
Development
python3 -m venv .venv && .venv/bin/pip install -e ./clipmaster-mcp pytest
.venv/bin/pytest clipmaster-mcp/tests -q
Install
Add clipmaster mcp to your client. Pick the one you use.
claude mcp add clipmaster-mcp -- uvx clipmaster-mcpcodex mcp add clipmaster-mcp -- uvx clipmaster-mcpamp mcp add clipmaster-mcp -- uvx clipmaster-mcp{
"mcpServers": {
"clipmaster-mcp": {
"command": "uvx",
"args": [
"clipmaster-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"clipmaster-mcp": {
"command": "uvx",
"args": [
"clipmaster-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"clipmaster-mcp","command":"uvx","args":["clipmaster-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"clipmaster-mcp": {
"command": "uvx",
"args": [
"clipmaster-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"clipmaster-mcp": {
"command": "uvx",
"args": [
"clipmaster-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"clipmaster-mcp": {
"command": "uvx",
"args": [
"clipmaster-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"clipmaster-mcp": {
"type": "local",
"command": "uvx",
"args": [
"clipmaster-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"clipmaster-mcp": {
"command": {
"path": "uvx",
"args": [
"clipmaster-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
uvx clipmaster-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance19/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 17 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.1.1Latest | Aug 14, 2026 |