Vidmcp MCP Server

vidmcp PyPI v1.1.0

Published by dhirajlochib — no publish provenance, so origin is unverified, but the source is public: the repository link below is self-declared yet readable, so you can inspect the code before adopting it.

AI video editing MCP server — SAM 3.1 segmentation, behind-the-subject VFX, education scenes

Trust grade
A
93/100
Last scanned get badge →
Trust
A · 93/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
High
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
Share this Trust Score
𝕏 Share LinkedIn Reddit
A Why this grade threat 100 − adoption risk = 93/100

The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.

1. Threat score — 100 − 0 = 100. What the published surface and source actually contain:

The deterministic scan raised no scored threat in the surface it inspected — the threat score stayed at 100. Capability observations and advisory notes are recorded but never lower it.

2. Client adoption risk — 100 − 7 = 93. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:

PointsAdoption-risk factor
−6 capability blast radius (high) — client exposure if the model is manipulated
−1 publisher verification (public source) — no provenance, but the source is public and inspectable

Capability observations and info notes are shown under Findings but never scored. Open any row's finding below for the file, line and evidence behind a deduction.

Findings 10

high Shell/command execution in server code (src/vidmcp/agents/rewatch.py)MTC-SRC-002

In the server's implementation (`src/vidmcp/agents/rewatch.py:109`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: try: out = subprocess.run( ["ffmpeg", "-i", str(video), "-af", "silencedetect=noise=-38dB:d=2.5

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/vidmcp/agents/rewatch.py

high Shell/command execution in server code (src/vidmcp/audio/bgm.py)MTC-SRC-002

In the server's implementation (`src/vidmcp/audio/bgm.py:109`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: ffix(".env16k.wav") subprocess.run( ["ffmpeg", "-y", "-i", str(wav_path), "-ac", "1", "-ar", "16000", str(tm

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/vidmcp/audio/bgm.py

high Shell/command execution in server code (src/vidmcp/audio/diarize.py)MTC-SRC-002

In the server's implementation (`src/vidmcp/audio/diarize.py:24`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: exist_ok=True) subprocess.run( ["ffmpeg", "-y", "-i", str(video), "-ac", "1", "-ar", str(sr), "-vn"

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/vidmcp/audio/diarize.py

high Shell/command execution in server code (src/vidmcp/audio/dubbing.py)MTC-SRC-002

In the server's implementation (`src/vidmcp/audio/dubbing.py:38`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: (text) try: subprocess.run(cmd, check=True, capture_output=True) subprocess.run( ["ffmpe

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/vidmcp/audio/dubbing.py

high Shell/command execution in server code (src/vidmcp/audio/loudness.py)MTC-SRC-002

In the server's implementation (`src/vidmcp/audio/loudness.py:59`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: , "192k", str(out)] subprocess.run(cmd, check=True, capture_output=True) achieved = measure_loudness(out) re

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/vidmcp/audio/loudness.py

high Shell/command execution in server code (src/vidmcp/audio/media.py)MTC-SRC-002

In the server's implementation (`src/vidmcp/audio/media.py:17`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: try: out = subprocess.check_output( [ "ffprobe", "-v",

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/vidmcp/audio/media.py

high Shell/command execution in server code (src/vidmcp/audio/process.py)MTC-SRC-002

In the server's implementation (`src/vidmcp/audio/process.py:41`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: ormalize to wav subprocess.run( ["ffmpeg", "-y", "-i", str(src), "-ac", "2", "-ar", "48000", str(raw

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/vidmcp/audio/process.py

high Shell/command execution in server code (src/vidmcp/audio/semantic.py)MTC-SRC-002

In the server's implementation (`src/vidmcp/audio/semantic.py:23`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: rue, exist_ok=True) subprocess.run( ["ffmpeg", "-y", "-i", str(video), "-ac", "1", "-ar", str(sr), "-vn", st

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/vidmcp/audio/semantic.py

high Shell/command execution in server code (src/vidmcp/audio/speech_lock.py)MTC-SRC-002

In the server's implementation (`src/vidmcp/audio/speech_lock.py:128`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: + "_h264.mp4") subprocess.run( ["ffmpeg", "-y", "-i", str(out_path), "-c:v", "libx264", "-pix_fmt",

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/vidmcp/audio/speech_lock.py

high Shell/command execution in server code (src/vidmcp/audio/tracks.py)MTC-SRC-002

In the server's implementation (`src/vidmcp/audio/tracks.py:27`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: ec_{path.stem}.wav" subprocess.run( ["ffmpeg", "-y", "-i", str(path), "-vn", "-ar", str(sr), "-ac", "2",

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/vidmcp/audio/tracks.py

Tools 144

Each tool and what it can reach — statically extracted from the published source.

  • ensure_modelingests untrusted input
  • get_job_statusingests untrusted input
  • get_review_decisionsingests untrusted input
  • add_camera_movesno sensitive capability
  • add_graphicsno sensitive capability
  • add_sfxno sensitive capability
  • add_speech_infographicsno sensitive capability
  • analyze_motionno sensitive capability
  • analyze_pacingno sensitive capability
  • analyze_videono sensitive capability
Show 134 more tools ↓
  • apply_auto_heuristicsno sensitive capability
  • apply_background_effectsno sensitive capability
  • apply_cut_planno sensitive capability
  • apply_depth_fog_particlesno sensitive capability
  • apply_lutno sensitive capability
  • apply_recipeno sensitive capability
  • apply_styleno sensitive capability
  • attach_narrationno sensitive capability
  • audio_tracksno sensitive capability
  • auto_colorno sensitive capability
  • build_footage_indexno sensitive capability
  • classify_contentno sensitive capability
  • color_scopesno sensitive capability
  • compare_rendersno sensitive capability
  • compile_lessonno sensitive capability
  • compile_scene_codeno sensitive capability
  • compile_viddslno sensitive capability
  • compose_recipesno sensitive capability
  • composite_and_renderno sensitive capability
  • compute_depth_fieldno sensitive capability
  • compute_uncertainty_fieldno sensitive capability
  • create_projectno sensitive capability
  • detect_scenesno sensitive capability
  • detect_shotsno sensitive capability
  • diarize_speakersno sensitive capability
  • draft_edit_planno sensitive capability
  • dub_videono sensitive capability
  • edit_audio_trackno sensitive capability
  • enhance_editno sensitive capability
  • enqueue_jobno sensitive capability
  • ensure_sam_weightsno sensitive capability
  • evaluate_quality_gatesno sensitive capability
  • execute_edit_planno sensitive capability
  • export_edlno sensitive capability
  • export_multino sensitive capability
  • export_renderno sensitive capability
  • export_timelineno sensitive capability
  • extract_brand_from_videono sensitive capability
  • extract_clipsno sensitive capability
  • flow_reproject_backgroundno sensitive capability
  • freeze_frameno sensitive capability
  • generate_brollno sensitive capability
  • generate_edit_variantsno sensitive capability
  • generate_meshy_plateno sensitive capability
  • generate_metadatano sensitive capability
  • generate_musicno sensitive capability
  • generate_thumbnailno sensitive capability
  • generate_thumbnailsno sensitive capability
  • get_backend_infono sensitive capability
  • get_brand_kitno sensitive capability
  • get_projectno sensitive capability
  • graph_branchno sensitive capability
  • graph_checkoutno sensitive capability
  • graph_commitno sensitive capability
  • graph_logno sensitive capability
  • graph_mergeno sensitive capability
  • import_videono sensitive capability
  • insert_brollno sensitive capability
  • install_recipe_fileno sensitive capability
  • list_effectsno sensitive capability
  • list_graphic_templatesno sensitive capability
  • list_lutsno sensitive capability
  • list_marketplace_recipesno sensitive capability
  • list_modelsno sensitive capability
  • list_opsno sensitive capability
  • list_projectsno sensitive capability
  • list_recipesno sensitive capability
  • list_recipes_v2no sensitive capability
  • list_tool_packsno sensitive capability
  • live_process_videono sensitive capability
  • lock_identity_across_shotsno sensitive capability
  • match_colorno sensitive capability
  • match_subject_lightingno sensitive capability
  • matte_diagnosticsno sensitive capability
  • mine_failuresno sensitive capability
  • mix_bgmno sensitive capability
  • mixdown_audiono sensitive capability
  • place_scene_as_backgroundno sensitive capability
  • plan_cutsno sensitive capability
  • plan_editno sensitive capability
  • plan_harnessno sensitive capability
  • platform_healthno sensitive capability
  • process_audiono sensitive capability
  • project_briefno sensitive capability
  • propose_edit_strategiesno sensitive capability
  • publish_recipeno sensitive capability
  • queue_statusno sensitive capability
  • refine_alphano sensitive capability
  • refine_segment_keyframesno sensitive capability
  • render_math_sceneno sensitive capability
  • render_speech_locked_sceneno sensitive capability
  • replace_backgroundno sensitive capability
  • reproject_backgroundno sensitive capability
  • review_editno sensitive capability
  • review_ui_statusno sensitive capability
  • revise_edit_planno sensitive capability
  • rewatch_renderno sensitive capability
  • run_critic_ensembleno sensitive capability
  • run_edit_pipelineno sensitive capability
  • run_education_lessonno sensitive capability
  • run_fast_education_harnessno sensitive capability
  • run_intentno sensitive capability
  • run_opsno sensitive capability
  • run_quality_gated_pipelineno sensitive capability
  • run_recipe_v2no sensitive capability
  • run_talking_head_polishno sensitive capability
  • run_ultimate_pipelineno sensitive capability
  • run_viddslno sensitive capability
  • scaffold_remotion_sceneno sensitive capability
  • search_footageno sensitive capability
  • search_libraryno sensitive capability
  • segment_multi_objectsno sensitive capability
  • segment_subjectno sensitive capability
  • set_brand_kitno sensitive capability
  • set_composite_realismno sensitive capability
  • set_creative_profileno sensitive capability
  • set_tool_packno sensitive capability
  • sign_renderno sensitive capability
  • smart_cut_hesitationsno sensitive capability
  • smart_reframeno sensitive capability
  • stabilize_matteno sensitive capability
  • stabilize_videono sensitive capability
  • start_live_sessionno sensitive capability
  • start_queue_workerno sensitive capability
  • start_review_uino sensitive capability
  • suggest_brollno sensitive capability
  • sync_audio_semanticsno sensitive capability
  • talking_head_math_lessonno sensitive capability
  • time_warpno sensitive capability
  • transcribe_and_captionno sensitive capability
  • transcribe_wordsno sensitive capability
  • uncertainty_guided_refineno sensitive capability
  • validate_recipeno sensitive capability
  • verify_render_manifestno sensitive capability

What this scan could not see

Versions 1

Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.

VersionScoreFindingsEngineScanned
v1.1.0 latest A 93/100 10 1.13.0 2026-08-25

Embed this score

Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.

MCP Trust Score: A · 93/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/vidmcp/badge.svg)](https://mcptrustchecker.com/registry/vidmcp)
HTML
<a href="https://mcptrustchecker.com/registry/vidmcp"><img src="https://mcptrustchecker.com/registry/vidmcp/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/vidmcp/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.

npx mcptrustchecker scan vidmcp --online --registry pypi

Use the free API → How scoring works

More in Design & Media