Subtitle Translation
БесплатноНе проверенAn offline MCP server for translating movie subtitles, providing persistent translation sessions, a glossary, and modular format adapters so LLM agents can tran
Описание
An offline MCP server for translating movie subtitles, providing persistent translation sessions, a glossary, and modular format adapters so LLM agents can translate while timing is never altered.
README
Offline MCP server for subtitle translation with a persistent translation session, a translation-memory glossary, and modular format adapters. Built for LLM agents (e.g. Cline) — the server structures and persists, the agent translates.
- Timing is never touched. The source timing/order is stored once at parse time;
translate_batchsends only{ index, text }, so cues can never drift or merge. - Persistent session. Interrupted translation? Resume exactly where you left off (
translation_status→missingRanges). - Glossary (translation memory). Names and fixed terms are translated consistently across movies and series.
- Whole-film context.
subtitle_overviewgives the agent the full plain text first, so names/terminology stay consistent. - Encoding-safe. Auto-detects UTF-8 / Windows-1250 / ISO-8859-2 / Windows-1251 / ISO-8859-1 — mojibake is never silently translated.
Languages: English · Slovenčina
Layout
<server dir>/
├── Subtitles\ # SUBTITLES_ROOT — movie folders (Subtitles/<movie>/<file>)
│ ├── Movie A\
│ │ ├── movie-a.srt
│ │ └── glossary.json # movie/series-scoped glossary
│ └── Movie B\
│ └── movie-b.srt
└── data\ # SRT_DATA_ROOT — session.json + global glossary.json (+ .bak)
Override the roots with the SUBTITLES_ROOT and SRT_DATA_ROOT env vars.
Quick start
Requires Node.js 20+ (tested on 20/22).
npm install
npm run build # tsc → build/
npm test # vitest run
MCP config (VS Code / Cline):
{
"mcpServers": {
"subtitle-translation-mcp": {
"command": "node",
"args": ["<path-to-repo>/build/index.js"],
"env": {
"SUBTITLES_ROOT": "<path-to-repo>/Subtitles",
"SRT_DATA_ROOT": "<path-to-repo>/data"
}
}
}
}
Tools (19)
| Tool | Purpose |
|---|---|
list_movies |
List movie folders and their subtitle files |
list_formats |
List supported subtitle formats (SRT, MicroDVD .sub) |
info_subtitles |
Block count, first/last timecodes, validation issues; reports detected encoding + detectionConfidence |
parse_subtitles |
Return a page of blocks (startBlock/blockCount); stores the full source (timing/order) into the session on first call |
subtitle_overview |
Whole-movie plain text (no indexes/timecodes); outFile writes a .txt, maxLines caps output |
search_cues |
Find cues by text/regex, with optional surrounding context — check name/term consistency |
replace_cues |
Replace text/regex across cues (literal or regex); outFile writes the result; timing untouched |
translate_batch |
Store translated blocks — send only { index, text }; reports unknown/empty indexes |
build_subtitles |
Assemble the full file from the session; outFile write / format conversion, includeContent/preview |
translation_status |
Session status: total/stored/remaining + missingRanges (resume after interruption) |
clear_translation |
Clear the persistent session for a file |
glossary_get |
Read the translation memory (global + movie-scoped entries; optional srcLang filter) |
glossary_add |
Add/update a term (term → translation, srcLang, scope) — write only after explicit user consent |
validate_subtitles |
Structural validation: duplicates, inverted timecodes, overlaps, empty cues |
write_subtitles |
Write subtitle content to a file inside the root (UTF-8, overwrite guard) |
shift_timecodes |
Shift all timecodes by ±ms |
reindex_subtitles |
Re-number cues sequentially |
clean_sound_cues |
Remove sound-effect cues (e.g. [krik]); mode "cues+lines" (default) also strips [...] from mixed lines; writes to a new outFile, dryRun preview |
generate_release_note |
Write the three-version README.txt release note for a finished translation |
Translation workflow (EN→SK example)
info_subtitles→ sanity check + encoding.subtitle_overview→ read the whole film (identify characters/terminology).glossary_get→ load the translation memory; propose new terms, start only after approval.parse_subtitlesin batches (e.g. 100 blocks) — stores full source.- Agent translates and sends only
{ index, text }viatranslate_batch. - Repeat until
remaining: 0(track withtranslation_status). build_subtitleswithoutFile→ merged result.validate_subtitleson the result.generate_release_note→ three-versionREADME.txtin the movie folder.
Agent translation rules
The server structures and persists, but the actual translation is done by an LLM agent (e.g. Cline). Quality depends on the agent following a strict rule set: review the whole film first, no mojibake, correct audio-track language, glossary priority, informal T-form, no Czechisms, name transliteration per Slovak rules, ~37–42 chars per line, source-language selection (CZ > Slavic > DE/FR > EN for Western films; original ZH/JA/KO > Slavic > EN for Asian films).
The quality also depends on the LLM model itself: it should handle at least 256k context (above 512k recommended — a single full-movie overview can be large), and it should be linguistically strong in Slovak. The project is developed and tested with DeepSeek-V4-Flash.
The public version is in docs/translation-rules.en.md (English) and docs/translation-rules.sk.md (Slovak). The private working copy lives in .clinerules/ and is not part of this repository.
Docs
- docs/capabilities.md (EN) / docs/capabilities.sk.md (SK) — what you can do with this tool (use cases & ideas).
- docs/faq.md (EN) / docs/faq.sk.md (SK) — troubleshooting and setup.
- docs/tools.md — the full tool list.
- docs/usage.md — annotated example tool calls.
- docs/source-language-preference.en.md (EN) / docs/source-language-preference.sk.md (SK) — how to pick the best source track (e.g. content from CZ, timing from EN, names from ZH).
- Translations of the docs into other Slavic languages (PL, SR, BG, …) are welcome as pull requests.
Adding a new format (modular)
- Create
src/formats/<name>.tsexporting an adapter implementingSubtitleFormat. - Register it in
src/core/formats.ts:
import { assAdapter } from "../formats/ass.js";
export const ADAPTERS: SubtitleFormat[] = [srtAdapter, assAdapter];
No other code changes — all tools are format-agnostic.
Safety
- All
movie/file/outFilepaths are validated to stay inside the configured root; inner separators are rejected (flatSubtitles/<movie>/<file>layout). - No shell execution — everything uses Node.js
fsAPIs. - Writes happen only via the write tools (with the
overwriteguard onwrite_subtitles).
Development
npm install
npm run build # tsc
npm test # vitest run (149 tests)
License
MIT — see LICENSE.
Установка Subtitle Translation
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/Majrooo/subtitle-translation-mcpFAQ
Subtitle Translation MCP бесплатный?
Да, Subtitle Translation MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Subtitle Translation?
Нет, Subtitle Translation работает без API-ключей и переменных окружения.
Subtitle Translation — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Subtitle Translation в Claude Desktop, Claude Code или Cursor?
Открой Subtitle Translation на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Subtitle Translation with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
