Skip to main content
Glama

blender_vse

Add, edit, and render video sequences in Blender: manage strips, apply transitions, trim, cut, move, and output video files.

Instructions

PORTMANTEAU PATTERN RATIONALE: Consolidates 20 VSE operations into a single interface. Prevents tool explosion while providing full video editing: strip management, timeline editing, effects, and rendering. Follows FastMCP 3.x best practices.

Blender's built-in Video Sequence Editor (VSE) exposed as MCP tools. Add video/audio/image strips, apply transitions, trim, cut, move, and render to video.

Strip Creation (7 operations):

  • add_movie: Add a video/MP4 file as a movie strip

  • add_sound: Add an audio file (WAV, MP3, etc.) as a sound strip

  • add_image_sequence: Add a folder of images as an image sequence strip

  • add_scene: Add a 3D scene as a strip (compositing)

  • add_color: Add a solid color matte strip

  • add_text: Add a text overlay strip

  • add_effect: Add a transition/filter effect between strips

Strip Editing (6 operations):

  • delete_strip: Remove a strip by name

  • cut_strip: Cut a strip at a specific frame

  • trim_strip: Set strip start/end frames (trim handles)

  • move_strip: Move a strip to a different channel or frame

  • mute_strip: Mute or unmute a strip

  • lock_strip: Lock or unlock a strip

Properties (3 operations):

  • set_speed: Change playback speed (creates speed effect strip)

  • set_blend: Set blend mode and opacity (ALPHA_OVER, CROSS, ADD, etc.)

  • set_transform: Set position, scale, rotation of a strip

Information (2 operations):

  • list_strips: List all strips in the timeline with properties

  • get_timeline_info: Get timeline frame range, FPS, strip count, channels

Rendering (1 operation):

  • render_video: Render the VSE timeline to a video file (H264/MPEG4)

Cleanup (1 operation):

  • clear_vse: Remove all strips from the timeline

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fpsNoFrames per second. Default: 30. Used for: render_video.
lockNoTrue to lock, False to unlock. Default: True. Used for: lock_strip.
muteNoTrue to mute, False to unmute. Default: True. Used for: mute_strip.
textNoText content. Required for: add_text.
codecNoVideo codec. Options: H264, H265, THEORA, AV1. Default: H264.H264
frameNoFrame number for placement/cutting. Default: 1.
lengthNoStrip duration in frames. Default: 120. Used for: add_color, add_text, add_effect.
channelNoVSE channel number (higher = on top). Default: 1.
color_bNo
color_gNo
color_rNo
qualityNoEncoding quality. Options: BEST, GOOD, MEDIUM. Default: MEDIUM. Used for: render_video.MEDIUM
scale_xNo
scale_yNo
cut_typeNoCut type. SOFT (preserves handles) or HARD (snaps). Default: SOFT.SOFT
filepathNoPath to video or audio file. Required for: add_movie, add_sound.
rotationNoStrip rotation in degrees. Used for: set_transform.
containerNoVideo container format. Options: MPEG4, AVI, QUICKTIME, OGG, MKV. Default: MPEG4.MPEG4
directoryNoDirectory path for image sequences. Required for: add_image_sequence.
font_sizeNoFont size in points. Default: 48. Used for: add_text.
frame_endNoEnd frame for render range. Default: 250.
operationNoThe VSE operation to perform.list_strips
blend_typeNoBlend mode. Options: ALPHA_OVER, CROSS, ADD, SUBTRACT, MULTIPLY, SCREEN, OVERLAY, DARKEN, LIGHTEN, etc. Default: ALPHA_OVER.ALPHA_OVER
fit_methodNoHow to fit media. FIT (maintains aspect), FILL (crops), STRETCH. Default: FIT.FIT
position_xNo
position_yNo
scene_nameNoSource 3D scene name. Required for: add_scene.
strip_nameNoTarget strip name for editing operations. Required for most edit ops.
audio_codecNoAudio codec. Options: AAC, MP3, PCM, VORBIS, FLAC. Default: AAC. Used for: render_video.AAC
blend_alphaNoOpacity 0.0-1.0. Default: 1.0.
effect_typeNoEffect type. Options: CROSS, WIPE, GLOW, TRANSFORM, SPEED, ADJUSTMENT, GAUSSIAN_BLUR, TEXT, COLOR, MULTICAM. Default: CROSS.CROSS
frame_startNoStart frame for trim or render range. Default: 1.
output_pathNoOutput file path (.mp4 recommended). Required for: render_video.
strip1_nameNoFirst strip name for effect creation. Required for: add_effect.
strip2_nameNoSecond strip name for effect creation. Required for: add_effect.
resolution_xNo
resolution_yNo
speed_factorNoPlayback speed multiplier. 2.0 = double speed, 0.5 = half speed. Default: 1.0.
audio_bitrateNoAudio bitrate in kbps. Default: 192. Used for: render_video.
include_audioNoInclude audio track from video. Default: True. Used for: add_movie.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations are all false, so the description carries the full burden. It lists operations like clear_vse and delete_strip but does not disclose that these are destructive or that all operations mutate the current Blender session. There is no mention of side effects, permissions, or whether changes are reversible. The 'Follows FastMCP 3.x best practices' note adds no behavioral insight.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is long (around 500 words) and includes a 'PORTMANTEAU PATTERN RATIONALE' that is partially redundant with the first paragraph. However, the categorized operation list is necessary for a 20-operation tool. The structure is clear, but some sentences could be trimmed without losing value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (40 parameters, 20 operations), the description provides a comprehensive op list and categories. However, it does not explain how the 'operation' parameter dispatches sub-operations, what the default operation is (list_strips), or the execution context (e.g., requires running Blender). It also omits behavioral details about state persistence and error conditions. Adequate but with gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With 78% schema coverage, the baseline is 3. The description adds operation-to-parameter mappings (e.g., 'add_movie' requires 'filepath', 'add_effect' uses 'strip1_name' and 'strip2_name'), which is critical for a portmanteau tool with 40 parameters. This helps the agent select the right parameters per operation beyond what the schema alone provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool exposes Blender's Video Sequence Editor as MCP tools, with a specific verb ('add', 'apply', 'trim', 'cut', 'move', 'render') and resource (VSE). It distinguishes itself from sibling tools like blender_compositor and blender_render by focusing on VSE operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says it consolidates 20 VSE operations to prevent tool explosion, which implies when to use this tool (for video editing tasks). It provides categorized operation lists that guide sub-operation selection. However, it does not explicitly mention when NOT to use it or name alternative tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Latest Blog Posts

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/sandraschi/blender-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server