← clipkit.dev

INDIVIDUAL MCP TOOL

load_project

Import a previously shared project as the current project, by its share id or its editor URL (e.g.

clipkit.devnone authenticationAvailability not checked

LIVE ENDPOINT

https://www.clipkit.dev/mcp

No auth detected

Connect to this endpoint to inspect the live schema for load_project and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • A tool name or description suggests retrieving external content.

Parent server

clipkit.dev

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.