Skip to content
Back to search
100
MCP live MCP 2025-11-25 streamable-http

dev.clipkit/clipkit

dev.clipkit/clipkit

MCP server for Clipkit — gives AI agents a video toolbox via the Clipkit schema.

Uptime
100.0%
2 direct probes · 30d
Response
1595ms
last probe
Tools
15
callable
Resources
4
readable
Prompts
0
available

Tools · 15

read_docs

Return a canonical Clipkit doc as text. topic "card" = the ~8KB compact authoring card — the recommended context for authoring; "pattern-data-viz" / "pattern-cinematic-ui" / "pattern-ui-screencast" = …

get_schema

Return the authoritative JSON Schema for a Clipkit Source — exact field names, types, and enums, generated from the protocol. Call with no argument for the full Source schema, or with element_type (e.…

create_project

Create a new, blank Clipkit project with the given dimensions and duration, and return its project_id. Defaults: 1920×1080, 10 seconds, 30 fps, output_format "mp4". Call this first when starting a new…

get_project

Return the full current Clipkit source as JSON. Use this to inspect the project, pass it to a render pipeline, or compose follow-up edits.

describe_project

Return a compact, human-readable summary of the current project — dimensions, fps, duration, an element breakdown by type, a per-track timeline (paint order low→high), and render-time warnings. Much c…

set_project

Replace the entire project with the given source JSON, returning its project_id. This is the PRIMARY way to build: use it to create a composition or to add/change many elements at once. (To tweak a si…

add_element

Append a single element to an existing project — a TWEAK, e.g. dropping in one more caption or shape. By default it is added at the top level; pass parent_id to add it INTO a group (nested). The eleme…

edit_element

Change fields on the element with the given id by merging in a partial element — only the keys you include change. The id may be any element ANYWHERE in the tree, including one nested inside a group (…

delete_element

Delete the element with the given id, anywhere in the tree (including one nested inside a group or its mask) — a tweak to an existing composition. (The project must keep at least one top-level element…

validate_project

Run the @clipkit/protocol validator against the current project AND surface render-time warnings even when the JSON is valid — things that pass the schema but the runtime will silently drop or clip: e…

preview_still

Render a single frame of the current project to a PNG and return it as an image you can look at. This is how you check your work — in chat there is no other way to see what a composition actually look…

create_promo

Assemble a designed-looking promo/intro/product/data video from the Clipkit pattern library: give an ordered list of SCENES and the words, and it bakes in the camera, glass, lighting, motion blur, tim…

open_in_editor

Validate the current project and create a link that opens it in the Clipkit web editor, where the user can preview and refine it. This shares the PROJECT (nothing is rendered — that's render_video). U…

ingest_asset

Fetch a remote media URL (image/video/audio) and HOST it on Clipkit, returning a stable asset_url to put in an element's `url`. Use this so the project's media survives — the original link may rot, be…

load_project

Import a previously shared project as the current project, by its share id or its editor URL (e.g. https://clipkit.dev/editor?id=…), returning its project_id. Use this to continue working on a project…

Resources · 4

clipkit-agents

AI authoring reference for Clipkit videos. Schema cheat sheet, pattern catalog (HeaderBar / StatBlock / BarChartRow / RankedList / PieCard), recipe gallery pointing at the working example videos, and …

clipkit://docs/agents.md
clipkit-protocol

Normative specification for the Clipkit Protocol (CKP/1.0). RFC 2119 voice — defines Source structure, every element type, the animation model, easing functions, conformance levels (validate / render …

clipkit://docs/protocol.md
clipkit-brand

Brand identity: dark surface system (#0A0A0A), two accents only (red #EF4444 + yellow #FFB800), Geist + Geist Mono typography, the three-bar logo construction, voice & tone (direct / concrete / honest…

clipkit://docs/brand.md
clipkit-schema

Machine-readable JSON Schema for a Clipkit Source, generated from the protocol Zod source of truth. The EXACT shape for set_project / add_element — every field, every element type, with types and enum…

clipkit://schema/source.json

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "dev.clipkit/clipkit": {
      "url": "https://www.clipkit.dev/mcp",
      "transport": "streamable-http"
    }
  }
}