Spimov MCP Server

Spimov MCP server — dub videos via Claude Desktop / Claude Code / any MCP client

Remote serverstreamable-http

What is the Spimov MCP server?

Spimov MCP server — dub videos via Claude Desktop / Claude Code / any MCP client. That is what the spimov mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The tools it exposes

The server publishes 14 tools. What each one is for:

  • create_dub — Upload a local file and queue a dubbing job (stdio only)
  • dub_youtube — Dub a YouTube URL server-side; optional auto-upload to a channel
  • get_job_status — Poll a job (queued / processing / review / completed / failed)
  • list_jobs — Recent jobs for the account
  • list_segments — Transcript segments (text, speaker, emotion, timing) of a job
  • update_segment — Edit one segment's text/emotion/speaker/skip and resynth
  • remix_video — Re-render audio mix / subtitles / lipsync without re-dubbing
  • download_video — Save the finished MP4 locally (stdio only)
  • get_download_url — Get a shareable, time-limited browser download link for the MP4 (use this over HTTP/web)
  • get_subtitles — Fetch SRT/VTT (any embedded language)
  • upload_to_youtube — Publish (or retry) a finished job to a connected channel
  • cancel_job — Cancel/delete

What it needs from you

Configuration is passed through the environment: SPIMOV_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

How it compares

Among the browser automation options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Spimov's toolset — create_dub, dub_youtube, get_job_status and 11 more — is a fair guide to whether it matches your workflow.

This entry was verified against Spimov's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Spimov.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
create_dubUpload a local file and queue a dubbing job (stdio only).
dub_youtubeDub a YouTube URL server-side; optional auto-upload to a channel.
get_job_statusPoll a job (queued / processing / review / completed / failed).
list_jobsRecent jobs for the account.
list_segmentsTranscript segments (text, speaker, emotion, timing) of a job.
update_segmentEdit one segment's text/emotion/speaker/skip and resynth.
remix_videoRe-render audio mix / subtitles / lipsync without re-dubbing.
download_videoSave the finished MP4 locally (**stdio only**).
get_download_urlGet a shareable, time-limited browser download link for the MP4 (use this over HTTP/web).
get_subtitlesFetch SRT/VTT (any embedded language).
upload_to_youtubePublish (or retry) a finished job to a connected channel.
cancel_jobCancel/delete.
list_languagesSource + target language list (17 target languages).
get_quotaCurrent minute & request usage vs. plan limits.

How to install the Spimov MCP server

{
  "mcpServers": {
    "spimov": {
      "command": "uvx",
      "args": ["spimov-mcp"],
      "env": {
        "SPIMOV_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
SPIMOV_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Spimov to create dub.
  • Use Spimov to dub youtube.
  • Use Spimov to get job status.

Frequently asked questions

It connects Spimov to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (create_dub, dub_youtube, get_job_status, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Spimov directly.