iMovie MCP Server
Controls iMovie on macOS via AppleScript for automated video editing, including creating projects, trimming and arranging clips, adding transitions, and exporting.
Uses OpenAI Whisper API for accurate speech-to-text transcription with word-level timestamps and GPT-4o for analyzing transcripts to create coherent narratives and edit decisions.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@iMovie MCP ServerCreate a 2-minute highlight reel from the videos in my watch folder."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Video Toolkit
Remotion-powered video editing toolkit. Transcribe source footage, plan edits, compose with overlays, render final videos.
Structure
├── src/ # Remotion compositions & components
│ ├── Root.tsx # Composition registration
│ ├── index.ts # registerRoot entry
│ ├── editData.ts # Clip definitions, task list, timing
│ ├── DayTwoComposition.tsx
│ └── VideoClip.tsx # Reusable video clip player
├── public/
│ └── audio/ # Sound effects
├── transcribe/ # Python transcription tool (mlx-whisper)
│ ├── transcribe.py # Transcribes videos → JSON + .txt
│ └── transcripts/ # Generated transcripts
├── videos/ # Source footage (gitignored)
├── remotion.config.ts
├── package.json
└── tsconfig.jsonRelated MCP server: capcut-mcp
Workflow
1. Transcribe
# Drop source videos into videos/
bun run transcribe
# Outputs to transcribe/transcripts/2. Plan edits
Edit src/editData.ts — define clips (source file, start/end timestamps), tasks, and timing.
3. Extract clips
# Extract each planned clip as a small mp4 for fast Remotion rendering
ffmpeg -ss START -i videos/SOURCE.MOV -t DURATION \
-c:v libx264 -preset ultrafast -crf 22 \
-c:a aac -b:a 192k -movflags +faststart \
-y public/clips/clip-name.mp44. Preview
bun run dev5. Render
bun run render DayTwo out/final.mp4 --codec h264 --crf 20Reusable Components
VideoClip— Plays a video file frompublic/DayTwoComposition— Full video composition with Series clips, DAY #2 overlay, and terminal-style todo listeditData.ts— Data-driven clip list and task definitions
Tools
Remotion — React-based video composition
FFmpeg — Clip extraction, format conversion
mlx-whisper — Local transcription on Apple Silicon
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aspectrr/agent-video-toolkit'
If you have feedback or need assistance with the MCP directory API, please join our Discord server