Design
clueso.io
Manages video projects and provides design guidance for creating video clips.
ENDPOINT 1
https://connect.clueso.io/mcp
MCP server metadata
- Name
- clueso-connect
- Version
- 1.0.0
Clueso Connect creates and edits explainer videos and motion graphics. Use these tools when the user wants to produce, update, or manage a video project. When composing a clip's visuals, design for the medium — a video frame isn't a web page or a slide. If you're building from a clueprint, follow its design; otherwise call `get_design_guide` before composing. Before creating anything: `find(type='workspaces')` to confirm the active workspace. A workspace is created automatically on first connect, so this won't be empty for a normal account. When the user wants a video, look for a relevant template FIRST: call `find(type='clueprints', query='<what the user wants>')` and, if there are strong matches, show the best 2-3 and ask whether to build from one — before building from scratch. Skip only if the user asked to start blank or already named a clueprint. Details under "Producing a video from a clueprint" below. ## Producing a video from a clueprint Clueprints are reusable templates with pre-designed clip layouts and voiceover patterns. 0. SUGGEST FIRST (unless the user asked to start blank or described a fully custom design): call `find(type='clueprints', query='<the kind of video the user wants>')`. Results are relevance-ranked across the user's workspace + the community library. If there are strong matches, show the top 2-3 — name, what it's for (search_summary), why it fits (relevance_reason), and whether it's a community template (is_community) — and ask whether to build from one or start blank. If matches are weak/empty, just proceed. 1. Once a clueprint is chosen: `get_clueprint(include='tree')` for the file layout → `get_clueprint(include='files', file_paths=[...])` for every `data.json` you need. (Or use an ID the user gave you directly.) 2. `create_project` with a title. 3. `add_clips(kind='blank', clips=[...])` — one entry per clueprint clip. 4. For each clip: `add_elements` to place content (clueprint data uses fractional [0..1] coords; multiply by the project's canvas dimensions for pixel positions — 1920×1080 for the default 16:9, but call `get_project` for other aspect ratios such as 9:16 or 1:1 which use smaller canvases), `update_clips` for background, `voiceover_batch` for narration. Call `get_element_schema` first if you don't know the `type_data` shape for a given `element_type`. 5. For animation clips: `generate_media(kind='animation', prompt=...)` with a SPECIFIC prompt describing the exact UI elements, interaction sequence, timing feel, and visual style. Vague prompts produce bad output. (Full guide: resource `clueso://docs/animation-prompts`.) 6. For AI images: `generate_media(kind='image', prompt=..., style_id=...)`. Pick a style from `find(type='image_gen_style_packs')` — see resource `clueso://docs/generation-styles`. 7. For video clips with source recordings: run `auto_sync` BEFORE generating TTS so the voiceover paces against the demo. See resource `clueso://docs/sync-points`. 8. `get_clip(select=[], render={})` to preview, iterate. 9. Share the `projectUrl` (returned by `create_project`) when done. ## Authoring a NEW clueprint Structure it like a polished design document — never a code dump. - Folder layout: `README.md` (overview), `design/` (colors.md, typography.md, backgrounds.md, animation.md), `layouts/` (one .md per distinct clip layout, named by purpose not clip index — e.g. `title-slide.md`, not `clip-0.md`), `rules/` (composition.md, voiceover.md, editing.md), `screenshots/`. - Markdown only — no JSON or config files. - Every layout file MUST start with the rendered screenshot: ``. To capture: call `get_clip(select=[], render={save: true})` per clip, then `update_clueprint(files=[...])` with the returned `presigned_url` as `source_url`. - Set the clueprint thumbnail via `update_clueprint(thumbnail_path=...)` after screenshots exist. - Full authoring guide (folder details, anti-patterns, color-block syntax): resource `clueso://docs/clueprint-authoring`.
Known tools 40
get_design_guideClueso's house style for composing video clips — how to think about concept, typography, color, composition, motion, and pacing.
Inferred read-onlyupdate_projectUpdate a project's metadata: rename, change description, move to a different folder, or change aspect ratio.
Potential side effectsduplicate_projectClone an entire project — every clip, voiceover, asset, and metadata field — into a fresh project.
Inferred read-onlyget_projectGet a summary of a project: canvas dimensions, per-clip summary (ids, indices, durations, element counts, voiceover_volume), and `audio_tracks` — every music/SFX entry on the project flattened to the same wire shape `add_audio` accepts (id, src, name, source_duration, guide_start_time/end_time, music_start_time/end_time, volume, loop, fade_in, fade_out).
Inferred read-onlyget_clipRead one clip: its elements (positions/sizes in canvas pixels), voiceover (text, voice, duration, voiceover_volume), background and transition.
Inferred read-onlyupdate_clipsUpdate one or more clips in a single call — background, transition, duration, title, visibility, position, and (video clips) the footage transform via video_styling.
Potential side effectsduplicate_clipClone one clip — within the same project, or **from another project** — into a target project.
Inferred read-onlyupdate_elementsUpdate many elements across one or more clips in a single tool call.
Potential side effectsremove_elementsRemove many elements across one or more clips in a single tool call.
Potential side effectsadd_audioAdd a music track or sound effect that plays as a project-level audio layer over all clips.
Inferred read-onlyvoiceover_batchSet voiceover text and/or trigger speech generation for any number of clips in a single call.
Inferred read-onlyauto_syncRun the agentic auto-sync pipeline against a clip with a source recording.
Inferred read-onlygenerate_mediaGenerate an AI image or canvas-code-based animation directly into a clip.
Inferred read-onlyestimate_durationEstimate voiceover duration for one or many clips at once (~150 words/minute).
Inferred read-onlyupdate_article_mediaUpdate an article image/GIF (screenshot), or inspect its current state.
Potential side effectsupdate_clueprintUpdate a clueprint's metadata and/or file contents in one call.
Potential side effectsCONNECT 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.clueso-connect]
url = "https://connect.clueso.io/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"clueso-connect": {
"type": "http",
"url": "https://connect.clueso.io/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: clueso-connect
Remote MCP URL: https://connect.clueso.io/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": {
"clueso-connect": {
"url": "https://connect.clueso.io/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"clueso-connect": {
"type": "http",
"url": "https://connect.clueso.io/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "clueso-connect",
"transport": "streamable-http",
"url": "https://connect.clueso.io/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Loading Trust v2 evidence…
Checking the associated registrable domain. The BuiltWith key remains server-side.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.