MCP Server for AI-powered video editing. Let Claude, GPT, or any AI agent edit videos through natural language. Add to your Claude Desktop config (claudedesktopconfig.json): Then restart Claude Desktop. You can now edit videos through conversation. Layer Compositing Model: Output: 1920x1080, 30fps, H.264 + AAC, MP4 atsurae.ai also exposes a REST API that any AI agent can call directly, without MCP
Add this skill
npx mdskills install 1000ri-jp/atsuraeWell-documented MCP server offering comprehensive video editing tools through natural language.
1# atsurae23> AIが、あつらえる — AI-crafted video editing45MCP Server for AI-powered video editing. Let Claude, GPT, or any AI agent edit videos through natural language.67[](https://opensource.org/licenses/MIT)8[](https://www.python.org/downloads/)9[](https://modelcontextprotocol.io)1011---1213## Quick Start1415```bash16# Install with pip17pip install atsurae1819# Or with uv20uv pip install atsurae21```2223### Claude Desktop Configuration2425Add to your Claude Desktop config (`claude_desktop_config.json`):2627```json28{29 "mcpServers": {30 "atsurae": {31 "command": "python",32 "args": ["-m", "atsurae"],33 "env": {34 "ATSURAE_API_URL": "https://api.atsurae.ai",35 "ATSURAE_API_KEY": "your-api-key"36 }37 }38 }39}40```4142Then restart Claude Desktop. You can now edit videos through conversation.4344---4546## Features — 10 MCP Tools4748| Tool | Description |49|------|-------------|50| `atsurae_inspect` | View project state at 3 detail levels: **L1** summary, **L2** structure, **L3** full timeline |51| `atsurae_edit` | Add, move, trim, transform, and delete clips on the timeline |52| `atsurae_audio` | Manage audio tracks — volume, ducking, BGM, narration |53| `atsurae_semantic` | High-level operations: `close_all_gaps`, `snap_to_previous`, `reorder_clips` |54| `atsurae_batch` | Execute up to 20 operations atomically in a single call |55| `atsurae_preview` | Get visual preview frames, event points, and before/after diffs |56| `atsurae_analyze` | Quality analysis — detect gaps, pacing issues, composition problems |57| `atsurae_render` | Start, monitor, and download video renders |58| `atsurae_history` | View operation history and rollback changes |59| `atsurae_pipeline` | End-to-end AI video creation pipeline |6061---6263## Example6465```66You: Create a 30-second intro video with the uploaded avatar and background music6768Claude: I'll create the intro video. Let me inspect the available assets first...6970 [atsurae_inspect] → Found: avatar.mp4, bgm.mp3, logo.png71 [atsurae_edit] → Placed avatar on Layer 3, logo on Layer 572 [atsurae_audio] → Added BGM with -6dB ducking under narration73 [atsurae_semantic] → Closed all gaps, snapped clips74 [atsurae_analyze] → Quality check passed (no gaps, good pacing)75 [atsurae_render] → Rendering at 1080p...7677Claude: Your intro video is ready!78 Duration: 30s | Resolution: 1920x1080 | Size: 12.4 MB79 Download: https://api.atsurae.ai/renders/abc123/output.mp480```8182---8384## Architecture8586```87 MCP Protocol REST API88[You / AI Agent] ──────────────→ [atsurae MCP] ──────────→ [atsurae.ai API]89 Server │90 ▼91 [Video Engine]92 │93 ▼94 [FFmpeg Render]95 │96 ▼97 [Output MP4]98```99100**Layer Compositing Model:**101102```103L5: Telop / Text overlays104L4: Effects (particles, transitions)105L3: Avatar (chroma-keyed)106L2: Screen capture / Slides107L1: Background (3D space, gradients)108```109110Output: 1920x1080, 30fps, H.264 + AAC, MP4111112---113114## API115116atsurae.ai also exposes a REST API that any AI agent can call directly, without MCP.117118Documentation: [https://docs.atsurae.ai](https://docs.atsurae.ai) *(coming soon)*119120---121122## Development123124```bash125# Clone126git clone https://github.com/1000ri-jp/atsurae.git127cd atsurae128129# Install with dev dependencies130uv pip install -e ".[dev]"131132# Run the MCP server locally133python -m atsurae134```135136---137138## Contributing139140Contributions are welcome. Please open an issue first to discuss what you'd like to change.141142---143144## License145146[MIT](LICENSE)147148---149150**atsurae** is built by [1000ri-jp](https://github.com/1000ri-jp).151152*AIが、あつらえる* — AI crafts it for you.153
Full transparency — inspect the skill content before installing.