yt-sub-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| YT_SUB_MCP_CACHE | No | Set to '0' to disable the disk cache layer. | 1 |
| YT_SUB_MCP_CACHE_DIR | No | Directory to store the cache. Default: on macOS ~/Library/Caches/yt-sub-mcp/, otherwise $XDG_CACHE_HOME/yt-sub-mcp/. | |
| YT_SUB_MCP_CACHE_TTL_DAYS | No | Cache entry expiration in days. '0' means no expiration. | 30 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_subtitle_tracksA | List the subtitle tracks available for a video. Use this when unsure which languages exist, or whether captions are human-written or auto-generated. |
| get_subtitlesA | Read a video's subtitles as text. |
| search_subtitlesA | Find where a phrase is said in a video. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a clear, distinct role: list tracks, read subtitles, and search within them. There is no overlap or ambiguity between the three operations.
All tool names follow a consistent verb_noun pattern (list_, get_, search_). The naming is uniform and predictable, with no mixed conventions.
Three tools is well-scoped for a YouTube subtitles server, covering the essential operations without unnecessary bloat. Each tool serves a necessary function.
The core operations of listing, reading, and searching subtitles are all present. A minor gap is the lack of an explicit way to select a specific subtitle track by language or ID, as get_subtitles appears to auto-pick human-written captions.