Skip to main content
Glama

tvsub MCP

M8ven Score

tvsub-mcp is the MCP companion for tvsub, an experimental subtitle overlay for Apple TV.app on macOS. It lets an MCP client inspect the current playback item, choose or translate a subtitle file, adjust its appearance, start or stop the overlay, and calibrate subtitle timing.

Supported player: purchased and rented films in macOS Apple TV.app (Prime Video support is being explored and is not currently available). Subtitle formats: SRT, SMI/SAMI, VTT. Translation runs on your choice of three backends: an Anthropic API key, a signed-in Claude Code CLI (Claude subscription), or a signed-in Codex CLI (ChatGPT subscription) — subscription backends add no API charges.

The server does not download subtitles, bypass DRM, modify video, or launch TV.app. You provide subtitle files that you have the right to use and start playback yourself.

Two directions, one workflow

If a foreign, classic, or multilingual film you purchased in Apple TV.app does not include Korean—or another language you need—bring a lawfully obtained subtitle file, translate it with your Claude or ChatGPT subscription, and display it as an overlay. The same workflow works in the other direction: viewers worldwide can translate lawfully obtained subtitles for Korean films and series into their own language.

Apple TV.app에서 구매한 외화·고전·다국어 영화에 한국어 또는 원하는 언어 자막이 없다면, 정당하게 보유한 자막 파일을 불러와 Claude나 ChatGPT 구독으로 번역한 뒤 오버레이로 표시할 수 있습니다. 같은 방식으로 전 세계 시청자도 한국 영화와 시리즈의 정당하게 보유한 자막을 자신의 언어로 번역해 시청할 수 있습니다.

Related MCP server: PeepIt MCP

Requirements

  • macOS

  • tvsub, installed and built

  • Python 3.12 or later

  • uv for the recommended uvx installation

  • For subtitle translation, one of: an Anthropic API key, a signed-in Claude Code CLI (Claude subscription), or a signed-in Codex CLI (ChatGPT subscription). No key or CLI is needed for any other tool

Install and register with Claude Code

Replace /absolute/path/to/tvsub with the directory containing tvsub's build/, config/, src/, and subtitles/ directories.

brew install uv

claude mcp add --transport stdio --scope user tvsub -- \
  uvx tvsub-mcp==0.2.2 \
  --tvsub-root /absolute/path/to/tvsub

claude mcp get tvsub
claude mcp list

Translation picks a backend automatically: an Anthropic API key if present, then a signed-in Claude Code CLI, then a signed-in Codex CLI. Set TVSUB_TRANSLATE_BACKEND (auto, api, claude, codex) or the backend tool argument to override. With a subscription CLI signed in you can skip the key entirely. To use the API backend, export your key and include it when registering the server — or store it once in macOS Keychain (service kim.youngji.tvsub.anthropic), which the server also reads.

export ANTHROPIC_API_KEY="your-key"

claude mcp add --transport stdio --scope user \
  --env ANTHROPIC_API_KEY="$ANTHROPIC_API_KEY" \
  tvsub -- uvx tvsub-mcp==0.2.2 \
  --tvsub-root /absolute/path/to/tvsub

Other stdio MCP clients can launch the same command:

uvx tvsub-mcp==0.2.2 --tvsub-root /absolute/path/to/tvsub

Tools

Tool

Purpose

now_playing

Read the current Apple TV.app title, content ID, position, and playback state.

list_subtitles

List and parse SRT, SMI, SAMI, and VTT files in tvsub's subtitle library.

load_subtitle

Select a subtitle file for the current content while preserving sync anchors by default.

translate_subtitle

Estimate or perform an LLM translation with cue and timecode validation. Supports backend selection, glossary injection, and partial retranslation by line or time range.

set_glossary

Create or update a per-title glossary (names, honorifics, relationships, forbidden translations) that is injected into translation prompts.

mark_reviewed

Promote a translated subtitle's provenance from ai_draft to user_reviewed.

list_fonts

List installed macOS fonts and check sample glyph coverage.

set_style

Change font, size, colors, outline, background, and screen position.

start_overlay

Start tvsub with the selected subtitle and style.

stop_overlay

Stop only the overlay process started by this server.

calibrate_sync

Store one or more dialogue anchors and calculate timing offset and drift.

status

Summarize playback, overlay, subtitle, style, and calibration state.

Before translating, call translate_subtitle with dry_run=true to review the cue count, batch count, and estimated cost. Subscription backends report $0 (included in subscription). Every translation writes a .provenance.json sidecar recording backend, hashes, and review status.

Important notices

  • Experimental software: expect rough edges and breaking changes. Keep a backup of your tvsub configuration and subtitle files.

  • Data sent to Anthropic: translation sends the selected subtitle text and surrounding subtitle context to the Anthropic API. Loading, styling, sync, and overlay controls do not send subtitle text to Anthropic.

  • User-paid API usage: the api backend uses your Anthropic API key and all charges are your responsibility; estimates can differ from the final bill. The claude and codex backends run through your own signed-in subscription CLIs and add no API charges.

  • Private API risk: tvsub reads Apple playback state through undocumented macOS MediaRemote interfaces. Apple does not support this integration and a macOS update may change or disable it.

  • Content rights: you are responsible for having the right to process and translate subtitle files. Do not redistribute protected content without permission.

  • This project is independent from and not affiliated with Apple or Anthropic.

Development

python3.12 -m venv .venv
.venv/bin/python -m pip install -e .
.venv/bin/python -m unittest discover -s tests -p 'test_*.py' -v
TVSUB_TEST_PYTHON="$PWD/.venv/bin/python" .venv/bin/python tests/stdio_smoke.py
bash scripts/hygiene-check.sh

Before tagging a release, run bash scripts/preflight.sh from the repository root.

Linux can run the unit tests and mock stdio smoke test. Apple TV.app, MediaRemote, CoreText, and the real overlay require macOS.

License

MIT. See LICENSE.

Available Tools

12 tools
calibrate_syncA
Idempotent

현재 대사와 일시정지 위치로 영화별 싱크 앵커를 기록하고 2점 scale+offset을 계산합니다. 권장 경로는 spoken_text(지금 들린 대사 일부)입니다. ⚠ subtitle_time은 자막 파일 원본 시각이며, tvsub CLI의 anchor --raw-sub-time과 같은 의미입니다. 화면에 보인 시각(보정 적용 후)을 넣는 anchor --sub-time과 다르므로, 이미 offset이 걸린 상태에서 화면 시각을 넣으면 앵커가 offset만큼 틀어집니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
store_idNo
actual_timeNo
spoken_textYes
subtitle_timeNo

TDQS

A4.4/5.0
Behavior5/5

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

Annotations already provide mutating/idempotent/non-destructive flags, and the description adds genuinely useful behavioral context beyond them: the action records a persistent per-movie anchor, computes scale+offset, and warns about a subtle failure mode where passing screen-adjusted time silently shifts the anchor by the existing offset. No contradiction with annotations.

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

Conciseness5/5

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

Four sentences with no filler: the purpose is front-loaded, the recommended parameter is given immediately, and the warning is dense but essential. Every sentence earns its place.

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

Completeness4/5

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

For a 4-parameter mutation tool with no output schema, the description covers the core workflow, the one serious time-source footgun, and the required-parameter recommendation. The only notable gap is store_id, which has a default and may be session-derived, so it is unlikely to block a basic invocation.

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

Parameters3/5

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

Schema description coverage is 0%, so the description carries full parameter-documentation burden. It explicitly explains spoken_text and subtitle_time, and 'pause position' maps to actual_time, but store_id is never mentioned, and actual_time is only implied rather than named. This is a meaningful partial compensation, not complete.

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 first sentence states a specific action and resource: it records a per-movie sync anchor from the current dialogue/pause position and calculates a two-point scale+offset. This clearly differentiates calibrate_sync from sibling tools such as start_overlay or translate_subtitle, so the purpose is unambiguous.

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 gives concrete guidance for the recommended input path ('권장 경로는 spoken_text') and a clear exclusion: subtitle_time must be the raw subtitle-file time, not the screen time after an offset is applied, otherwise the anchor drifts. It does not name a sibling alternative, but no sibling covers sync calibration, so this is sufficient context.

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

list_fontsA
Read-onlyIdempotent

macOS CoreText 설치 폰트를 열거하고 목표 언어 샘플 글리프 지원 여부를 확인합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
languageNoko

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds platform scope (macOS CoreText) and the language-support check, but does not disclose the exact return shape or edge-case behavior.

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

Conciseness5/5

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

One concise, front-loaded sentence that names the action, scope, and purpose without filler. Every element earns its place.

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

Completeness4/5

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

For a simple, read-only, one-parameter enumeration tool with strong annotations, the description is largely sufficient: it states the platform, what is listed, and the per-language check. It stops just short of describing the exact result shape, which is a minor gap given there is no output schema.

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

Parameters3/5

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

The single `language` parameter has no schema description (0% coverage). The tool description clarifies that language is the target language for glyph support, but it does not specify accepted formats or values beyond the default 'ko', so it only partially compensates for the schema gap.

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 states a concrete action ('enumerate') and a specific resource ('macOS CoreText installed fonts'), then adds a distinct purpose: checking sample glyph support for a target language. This clearly separates it from subtitle/overlay sibling tools like list_subtitles and status.

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

Usage Guidelines3/5

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

No explicit when-to-use or alternative tool is given. The description implies it is relevant when font/glyph support for a language matters, e.g., before configuring subtitle style, but leaves that inference to the agent.

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

list_subtitlesA
Read-onlyIdempotent

tvsub subtitles/ 라이브러리의 SRT/SMI/VTT 파일과 파싱 정보를 나열합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering safety. The description adds useful context about file types and parsing info, but does not disclose return format or pagination behavior, which would add value beyond annotations.

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

Conciseness5/5

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

Single sentence, highly concise, front-loads the key facts (list, file types, parsing info). No filler or redundant content.

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

Completeness5/5

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

For a zero-parameter read-only list tool, this is complete. Annotations cover safety, description states exactly what is listed, and no output schema means the agent only needs to know the tool's purpose.

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?

There are zero parameters, so schema coverage is trivially 100%. The description correctly implies no inputs are needed. Baseline 4 is appropriate since no parameter explanation is necessary.

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?

Description clearly states the action (list) and the specific resource (SRT/SMI/VTT files and parsing info in the tvsub subtitles/ library). It is easily distinguishable from sibling tools like load_subtitle or start_overlay.

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

Usage Guidelines2/5

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

No guidance on when to use this tool versus alternatives. While the name and description make its purpose obvious, it does not explicitly mention exclusions or context for choosing it over siblings.

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

load_subtitleB
DestructiveIdempotent

콘텐츠에 사용할 자막을 선택합니다. 기존 싱크 앵커는 기본적으로 보존합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
store_idNo
subtitleYes
reset_anchorsNo

TDQS

B3/5.0
Behavior3/5

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

Annotations already convey idempotency and destructiveness, and the description adds one useful behavioral detail: existing sync anchors are preserved by default. This hints that a reset option can change that behavior, but it does not explain what actually gets destroyed or when, so the disclosure is partial.

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

Conciseness5/5

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

The description is two short sentences with the purpose front-loaded and no filler. Every sentence earns its place, making it appropriately concise for a lightweight tool definition.

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

Completeness2/5

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

With three parameters, zero schema descriptions, and no output schema, this description is too sparse for an agent to invoke the tool correctly. It omits how store_id is used, what format subtitle expects, what reset_anchors resets, and what the result or side effects beyond default anchor preservation are.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate for the three parameters, but it never names store_id, subtitle, or reset_anchors. It only indirectly hints at reset_anchors through 'sync anchors are preserved by default', and the tool name/description minimally clarifies the subtitle parameter.

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

Purpose4/5

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

The description states a specific verb ('selects') and resource ('subtitle') with the context 'for content', making the tool's core function clear. It is implicitly distinct from siblings like list_subtitles and translate_subtitle, though it never names an alternative explicitly.

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

Usage Guidelines2/5

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

No guidance is given about when to use this tool versus siblings such as list_subtitles, translate_subtitle, or calibrate_sync. The phrase 'for content' provides weak context, but there are no prerequisites, exclusions, or alternative-routing instructions.

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

mark_reviewedA
Idempotent

번역 SRT의 provenance 상태를 user_reviewed로 갱신합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
subtitleYes

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already convey idempotency, non-destructiveness, and read-write behavior. The description adds the exact state transition to user_reviewed, which is helpful, but it does not disclose any additional side effects, error behavior, or requirements beyond the annotations.

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

Conciseness5/5

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

The description is a single, focused sentence with no filler. It front-loads the action and target, making it easy to scan and understand.

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

Completeness2/5

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

While the operation itself is simple and idempotent, the description omits the meaning of the sole required parameter and gives no usage context beyond the state transition. With no output schema and 0% parameter coverage, this leaves an agent guessing about how to correctly supply 'subtitle'.

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

Parameters2/5

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

The only parameter, 'subtitle', has 0% schema description coverage, and the description does not explain whether it is an ID, path, SRT content, or something else. The phrase 'translated SRT' gives a weak hint but does not compensate for the missing parameter documentation.

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 uses a specific verb ('갱신합니다' / updates) with a clear resource ('번역 SRT의 provenance 상태') and an explicit target state ('user_reviewed'). This clearly differentiates it from siblings like translate_subtitle or set_glossary.

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

Usage Guidelines3/5

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

The intended use after a translation has been reviewed is implied by 'user_reviewed', but the description never explicitly states when to use this tool versus alternatives, nor does it mention prerequisites. There is no exclusion guidance for other provenance-related operations.

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

now_playingA
Read-onlyIdempotent

MediaRemote/JXA와 TV.app AppleScript 교차 검증으로 현재 제목, 콘텐츠 ID, 위치와 재생 상태를 조회합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior4/5

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

The annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering the safety profile. The description adds valuable context beyond that: it discloses the use of MediaRemote/JXA and TV.app AppleScript and the cross-validation approach, which reveals dependencies and a behavioral trait not present in the annotations.

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

Conciseness5/5

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

The description is a single, dense sentence with no filler. It front-loads the queried fields and then states the verification method. Every part earns its place, making it highly efficient for an agent to parse.

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

Completeness4/5

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

With no output schema, the description carries the burden of explaining what the tool returns. It explicitly lists title, content ID, position, and playback state, which is the core of what an agent needs. It stops short of detailing return shape or edge-case behavior (e.g., no active playback), so it is complete but not exhaustive.

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?

The input schema has zero parameters, so the schema carries no burden. The description doesn't need to explain parameter meanings, and it doesn't introduce any confusion. The baseline of 4 for zero-parameter tools is appropriate.

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 uses a specific verb '조회합니다' (queries) and clearly identifies the resource: current title, content ID, position, and playback state. It distinguishes itself from sibling tools by naming exact data fields and the cross-validation mechanism, leaving no ambiguity about what this tool reads.

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 makes the usage context clear: a read-only query for current playback information. It does not explicitly name alternatives or exclusion conditions, but the scope is specific enough that an agent can correctly infer when to use it, especially given the sibling list.

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

set_glossaryB
DestructiveIdempotent

작품 자막 옆 <작품>.glossary.json을 생성·수정합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
glossaryYes
subtitleYes

TDQS

B3.3/5.0
Behavior3/5

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

Annotations already convey readOnlyHint=false, destructiveHint=true, and idempotentHint=true; the description adds the file-location behavior (next to the subtitle) and that it creates or modifies the file. However, it does not disclose whether existing files are overwritten or any other side effects, though the annotations reduce the burden.

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

Conciseness5/5

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

The description is a single front-loaded sentence with no filler. It efficiently communicates the core action, target file, and placement in one line.

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

Completeness2/5

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

With two required parameters, no output schema, and zero schema descriptions, this description leaves major gaps: what exactly 'subtitle' refers to, what shape 'glossary' should take, and how existing files are handled. The description covers the what but not the how or when.

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

Parameters2/5

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

Schema description coverage is 0%, and the description does not explain the 'subtitle' string or the 'glossary' object. The phrase 'next to the subtitle' implicitly hints that 'subtitle' identifies the target location, but this is too weak to meaningfully compensate for the lack of schema descriptions.

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 states a specific verb ('create/modify') and a specific resource ('<work>.glossary.json' placed next to the work's subtitle). This clearly distinguishes the tool from siblings like set_style or translate_subtitle.

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

Usage Guidelines2/5

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

The description gives no guidance on when to use this tool versus alternatives, nor does it mention any exclusions or prerequisites. Usage context must be inferred entirely from the tool name and the file-placement detail.

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

set_styleA
Idempotent

폰트·크기·색·외곽선·TV 영상 창 하단 위치를 저장하고 실행 중 오버레이에 즉시 반영합니다. outline_width는 pt가 아니라 폰트 크기 대비 퍼센트입니다(5 = 5%). 4~7이 실용 범위이고, 10을 넘기면 글자 속까지 외곽선 색으로 덮여 읽기 어려워집니다. bottom_margin은 TV 영상 창 높이 대비 비율(0.075 = 7.5%)이며 창 취득 실패 때만 화면 기준입니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
colorNo
languageNoko
font_sizeNo
max_linesNo
font_familyNo
bottom_marginNo
outline_colorNo
outline_widthNo
background_alphaNo

TDQS

A3.9/5.0
Behavior4/5

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

The description provides valuable behavioral context beyond annotations: it explains the unit conventions for outline_width and bottom_margin, warns about usability issues when outline_width exceeds 10, and mentions that changes are saved and immediately reflected. This is more than the idempotentHint/destructiveHint annotations already convey.

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

Conciseness5/5

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

The description is compact and front-loaded with the overall purpose in the first sentence, followed by targeted clarifications for the two trickiest parameters. Every sentence adds value and there is no filler.

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 9 parameters and no output schema, the description covers the most critical parameter quirks but misses some information like color format or how language is used. It is adequate for basic use but not fully comprehensive for all parameters.

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

Parameters3/5

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

Schema description coverage is 0%, so the description must compensate. It thoroughly explains outline_width and bottom_margin, which are non-obvious, but it leaves other parameters (color, font_size, max_lines, font_family, background_alpha, etc.) without explicit semantic detail. The names give some hints, but the description does not fully cover all parameters.

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 states clearly that the tool sets and saves overlay style (font, size, color, outline, bottom position) and immediately applies it to the running overlay. It uses specific verbs and a clear resource, and it is easily distinguished from sibling tools like load_subtitle or start_overlay.

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

Usage Guidelines3/5

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

The description implies usage whenever you need to change overlay style, but it does not explicitly state when to use this tool versus alternatives. There are no competitor tools for style setting among siblings, but the description also does not mention prerequisites or exclusions.

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

start_overlayB
Idempotent

tvsub NSPanel 오버레이를 선택 자막·스타일로 시작합니다. bottom_margin은 TV 영상 창 높이 기준이며 창을 찾지 못할 때만 설정 화면 기준으로 폴백합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
colorNo
store_idNo
subtitleNo
font_sizeNo
font_familyNo
bottom_marginNo
outline_widthNo

TDQS

B3/5.0
Behavior3/5

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

Annotations indicate idempotentHint=true and destructiveHint=false, and the description does not contradict them. It adds useful detail about bottom_margin being relative to the TV video window height with a fallback to settings when the window is not found, but it does not explain overlay lifecycle or other side effects.

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

Conciseness5/5

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

The description is two concise sentences with no filler. The primary purpose is stated first, and the most ambiguous parameter is clarified immediately after.

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

Completeness2/5

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

Given 7 parameters, no schema descriptions, no output schema, and a large sibling set, the description is incomplete. It addresses only one parameter's semantics and offers no guidance on overlay behavior, return values, or when to invoke it over related tools.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate for the 7 parameters. Only bottom_margin receives any semantic explanation; color, store_id, subtitle, font_size, font_family, and outline_width are left to inference from their names.

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

Purpose4/5

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

The description clearly states the tool starts a tvsub NSPanel overlay with a selected subtitle and style, using a specific verb and resource. It is distinguishable from stop_overlay by its action, but it does not explicitly differentiate itself from related tools like load_subtitle or set_style.

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

Usage Guidelines2/5

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

The description provides no explicit guidance on when to use start_overlay versus alternatives such as load_subtitle, set_style, or stop_overlay. It implies its use by naming what it does, but it does not state conditions, prerequisites, or exclusions.

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

statusA
Read-onlyIdempotent

오버레이, 재생 항목, 선택 자막, 싱크 보정, 스타일과 창 기준 위치 추적 계약을 한 번에 요약합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds no extra behavioral context beyond listing the domains of state, but it does not contradict the annotations. With annotations present, a score of 3 is appropriate for not adding further nuance.

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

Conciseness4/5

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

The description is a single sentence with the core action front-loaded ('한 번에 요약합니다'). It lists eight distinct domains, which makes it slightly dense, but every item is meaningful and the sentence structure is efficient.

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

Completeness4/5

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

Given zero parameters, rich annotations, and the tool's simple read-only purpose, the description covers the essential scope well. It lists all state domains comprehensively, though it does not specify the return format or what happens when no state is active; these are minor gaps for this low-complexity tool.

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?

The tool has zero parameters, so the baseline is 4. The description correctly avoids any parameter-related details, as there is nothing to explain. No schema-based ambiguity exists.

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 uses a specific verb ('요약합니다' — summarizes) and names the exact resources covered: overlays, playback items, subtitles, sync calibration, styles, and window position tracking contract. This clearly distinguishes it from sibling tools that each handle a single aspect (e.g., now_playing, list_subtitles) by signaling it is a comprehensive state summary.

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

Usage Guidelines3/5

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

The phrase '한 번에 요약합니다' (summarizes at once) implies the tool is for getting an overall status snapshot, but it does not explicitly state when to prefer this over siblings or when not to use it. No alternatives or exclusions are mentioned, leaving usage largely to inference.

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

stop_overlayA
Idempotent

이 MCP 서버가 시작한 tvsub 오버레이 프로세스를 정상 종료합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.8/5.0
Behavior3/5

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

The annotations already declare idempotentHint=true and destructiveHint=false, which cover safety. The description adds the scoping detail that only overlays started by this server are affected, but it provides no additional behavior like error handling, permissions, or side-effects, which is acceptable given the hints.

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

Conciseness5/5

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

It is a single, concise sentence in Korean that directly states the action and scope. No filler or redundant information; it earns every word.

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

Completeness4/5

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

Given zero parameters, no output schema, and clear annotations, the description is nearly complete. It specifies the exact scope, and the only missing piece is edge case behavior (e.g., what happens if no overlay is running), but that is minor for such a simple tool.

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?

The tool has zero parameters, so the schema needs no explanation. The description fully covers the absence by not needing any parameter context. Baseline 4 is appropriate because no parameter information is required or expected.

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 states a specific verb 'terminates' (정상 종료) and a clear resource: the tvsub overlay process started by this MCP server. It explicitly distinguishes it from siblings like start_overlay, making its purpose unambiguous.

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

Usage Guidelines2/5

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

The description gives no guidance on when to use this tool versus alternatives. It does not mention prerequisites, such as needing a running overlay, nor does it suggest any alternative or when not to use it. This is a notable gap for a tool that naturally pairs with start_overlay.

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

translate_subtitleB

Anthropic API, Claude 구독(Claude Code CLI), ChatGPT 구독(Codex CLI) 중 선택해 자막을 번역합니다. backend는 auto/api/claude/codex이며 타임코드·큐 수 검증, 캐시, provenance를 공통 적용합니다.

ParametersJSON Schema
NameRequiredDescriptionDefault
forceNo
backendNo
dry_runNo
glossaryNo
line_endNo
subtitleYes
time_endNo
batch_sizeNo
line_startNo
time_startNo
target_languageNoko

TDQS

B3.1/5.0
Behavior4/5

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

Annotations are sparse (readOnlyHint=false, destructiveHint=false, idempotentHint=false), and the description adds genuine context by disclosing that timestamp/cue-count validation, caching, and provenance are applied regardless of backend. This goes beyond what the annotations declare and does not contradict them, though it omits auth requirements and rate-limit behavior.

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

Conciseness4/5

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

Two sentences with no filler: the core purpose and backend options lead, and the common applied features follow in a dense second sentence. The structure is front-loaded and efficient, though the Korean phrasing may present minor accessibility friction for some agents.

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

Completeness2/5

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

For an 11-parameter mutation tool with no output schema and zero parameter coverage, this description is insufficient — an agent cannot determine the meaning of time_start/time_end, line_start/line_end, batch_size, glossary, or what the tool returns on success or failure. The description covers only purpose and backend, leaving the invocation contract largely undocumented.

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

Parameters2/5

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

Schema description coverage is 0% across 11 parameters, so the description carries the full burden but only explains the backend parameter values (auto/api/claude/codex). The other ten parameters (force, dry_run, glossary, line_end, time_end, batch_size, line_start, time_start, target_language, subtitle) are left with only their bare schema titles and defaults.

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

Purpose4/5

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

The description states a clear verb ('번역합니다' / translates) and resource (자막 / subtitles), and adds specificity by naming the three backend options (Anthropic API, Claude Code CLI, Codex CLI). Siblings like load_subtitle, list_subtitles, and status perform clearly different operations, so an agent can infer the purpose, though the description never explicitly differentiates itself from related tools.

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

Usage Guidelines2/5

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

No guidance is given on when to use this tool versus alternatives — there are no conditions, exclusions, or routing to sibling tools. The only usage hint is the backend value set (auto/api/claude/codex), which tells the agent which values are available but not which scenario calls for the tool.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 12 tool updatesv0.2.2
    • First observedcalibrate_sync
    • First observedlist_fonts
    • First observedlist_subtitles
    • First observedload_subtitle
    • First observedmark_reviewed
    • First observednow_playing
    • First observedset_glossary
    • First observedset_style
    • First observedstart_overlay
    • First observedstatus
    • First observedstop_overlay
    • First observedtranslate_subtitle

TDQS

A3.8/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: subtitle selection vs listing vs translation vs sync calibration are clearly separated. Even similar operations like load_subtitle and list_subtitles have unambiguous purposes.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern (e.g., load_subtitle, list_fonts, calibrate_sync). No mixed conventions or vague verbs.

Tool Count5/5

12 tools is well within the ideal range and each tool covers a distinct aspect of the subtitle overlay workflow: selection, rendering, styling, translation, sync, and status.

Completeness4/5

Core lifecycle is covered: loading subtitles, starting/stopping overlay, translating, review marking, styling, sync calibration, and status. Minor gaps exist like subtitle deletion or direct subtitle editing, but agents can complete the main workflow without dead ends.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

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/launzi/tvsub-mcp'

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