Raskadr
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| RASKADR_CAPCUT_DRAFTS_DIR | No | Override the CapCut draft directory path when necessary, e.g. RASKADR_CAPCUT_DRAFTS_DIR="/absolute/path/to/com.lveditor.draft" |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| raskadr_healthA | Check whether Raskadr can find the local CapCut draft store. This tool never writes files. |
| raskadr_list_projectsA | List local CapCut desktop projects without modifying them. |
| raskadr_inspect_projectA | Inspect tracks, segment ids, and timing for one CapCut project without writing files. |
| raskadr_check_compatibilityA | Run read-only version, storage, editor-process, and timeline integrity checks before any edit is planned. |
| raskadr_plan_editA | Validate and preview split, trim, move, and delete operations without writing to the CapCut project. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Most tools have clear, distinct responsibilities: list projects, inspect a project, and plan an edit are easy to tell apart. However, raskadr_health and raskadr_check_compatibility overlap somewhat as both are read-only environment/integrity checks, which could cause an agent to pick the wrong one.
All tools share the raskadr_ prefix and use snake_case, with most following a verb_noun pattern like list_projects and inspect_project. raskadr_health breaks that pattern slightly by using a noun instead of a verb.
Five tools is well-scoped for a read-only CapCut draft planning server. Each tool covers a distinct stage: health check, listing, inspection, compatibility validation, and edit planning.
The tool set forms a complete read-only workflow: verify access, list projects, inspect a project, check compatibility, and preview edits. Since the server explicitly avoids writing files, no CRUD operations are missing for its stated purpose.