INDIVIDUAL MCP TOOL
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: emoji / non-ASCII text (the runtime font atlas is ASCII-only), elements that run past the composition end, a missing top-level duration.
LIVE ENDPOINT
https://www.clipkit.dev/mcp
Connect to this endpoint to inspect the live schema for validate_project and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a deletion term.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.clipkit]
url = "https://www.clipkit.dev/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"clipkit": {
"type": "http",
"url": "https://www.clipkit.dev/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: clipkit
Remote MCP URL: https://www.clipkit.dev/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"clipkit": {
"url": "https://www.clipkit.dev/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"clipkit": {
"type": "http",
"url": "https://www.clipkit.dev/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "clipkit",
"transport": "streamable-http",
"url": "https://www.clipkit.dev/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
read_docs— Return a canonical Clipkit doc as text.get_schema— Return the authoritative JSON Schema for a Clipkit Source — exact field names, types, and enums, generated from the protocol.create_project— Create a new, blank Clipkit project with the given dimensions and duration, and return its project_id.get_project— Return the full current Clipkit source as JSON.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.set_project— Replace the entire project with the given source JSON, returning its project_id.add_element— Append a single element to an existing project — a TWEAK, e.g.edit_element— Change fields on the element with the given id by merging in a partial element — only the keys you include change.