Skip to main content
Glama
omd0
by omd0

Server Quality Checklist

58%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation5/5

    Each tool has a distinct, non-overlapping purpose in the SRT translation workflow: detect_conversations analyzes and chunks files, get_next_chunk retrieves chunks sequentially, parse_srt parses SRT content, todo_management manages tasks, translate_srt prepares content for AI translation, and write_srt writes output. The descriptions clearly differentiate their roles, with no ambiguity or overlap in functionality.

    Naming Consistency4/5

    Most tools follow a clear verb_noun pattern (e.g., detect_conversations, get_next_chunk, parse_srt, write_srt), which is consistent and predictable. However, translate_srt and todo_management deviate slightly by using a verb_noun format but with less precise action verbs, and todo_management is more generic. Overall, the naming is highly consistent with only minor deviations.

    Tool Count5/5

    With 6 tools, the server is well-scoped for its purpose of SRT translation. Each tool serves a specific role in the workflow (analysis, chunking, parsing, task management, translation preparation, and output), and none feel redundant or unnecessary. This count is ideal for covering the domain without being overwhelming or insufficient.

    Completeness5/5

    The tool set provides complete coverage for the SRT translation domain, supporting a full workflow from input analysis to output generation. It includes detection, chunking, parsing, task management, translation preparation, and file writing, with no obvious gaps. The descriptions emphasize a cohesive process, ensuring agents can handle all necessary operations without dead ends.

  • Average 3.6/5 across 6 of 6 tools scored. Lowest: 2.7/5.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 0 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.

    If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.

    MCP servers without a LICENSE cannot be installed.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior2/5

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

    No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool writes data, implying a mutation operation, but doesn't specify file creation behavior (e.g., overwrites existing files, requires permissions, or handles errors). For a write tool with zero annotation coverage, this leaves critical behavioral traits undisclosed.

    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, efficient sentence with zero waste. It's front-loaded with the core action ('Write SRT data') and specifies the target ('to file format'), making it appropriately sized and easy to parse quickly.

    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 the tool's complexity (a write operation with nested object parameters) and lack of annotations or output schema, the description is incomplete. It doesn't cover behavioral aspects like file handling, error conditions, or output expectations, leaving significant gaps for an agent to use it correctly.

    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 100%, with the parameter 'srtData' documented as an SRT data object to write. The description adds no additional meaning beyond this, such as format details or constraints. With high schema coverage, the baseline score of 3 is appropriate, as the description doesn't compensate but doesn't detract either.

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

    Purpose3/5

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

    The description states the tool writes SRT data to a file format, which is a clear verb+resource combination. However, it doesn't distinguish this from sibling tools like 'parse_srt' or 'translate_srt' that also handle SRT data, leaving the specific role ambiguous. The purpose is understandable but lacks sibling differentiation.

    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 provided on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing parsed SRT data first), exclusions, or relationships to siblings like 'parse_srt' (which might prepare data for writing). Usage is implied from the name alone, with no explicit context.

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

  • Behavior2/5

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

    With no annotations provided, the description carries full burden for behavioral disclosure. It mentions actions like 'create', 'update', and 'complete' which imply mutations, but doesn't specify permissions needed, whether tasks persist, error handling, or what 'get_status' returns. The description lacks critical behavioral context for a multi-action tool with mutation capabilities.

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

    Conciseness3/5

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

    The description is well-structured with clear sections (WHAT IT DOES, ACTIONS, TASK TYPES, EXAMPLE USAGE), but contains redundancy by repeating enum values already in the schema. The example usage section is helpful but could be more concise. Some sentences like 'Manage task priorities and dependencies' add value without being redundant.

    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 a complex 8-parameter tool with multiple mutation actions and no annotations or output schema, the description is incomplete. It doesn't explain what the tool returns for different actions, how tasks relate to actual SRT processing, error conditions, or persistence behavior. The lack of output schema means the description should compensate by explaining return values, which it doesn't.

    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 100%, so the schema already documents all 8 parameters thoroughly with descriptions and enums. The description adds minimal value beyond the schema - it lists the same action and taskType enums that appear in the schema. The example usage shows parameter combinations but doesn't provide additional semantic context beyond what's in the schema.

    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 manages tasks for SRT processing workflows, with specific actions like create, update, and track tasks. It distinguishes from siblings like parse_srt or translate_srt by focusing on task management rather than direct SRT processing operations. However, it doesn't explicitly contrast with sibling tools in the description text itself.

    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 guidance on when to use this tool versus the sibling tools like parse_srt or translate_srt. While it lists task types that correspond to some sibling functions, it doesn't explain when task management is appropriate versus calling those tools directly. The example usage shows how to invoke the tool but not when.

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

  • Behavior2/5

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

    No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool 'parse[s] SRT file content and return[s] structured data,' which implies a read-only operation, but it doesn't specify error handling (e.g., for invalid input), performance characteristics, or the format of the returned structured data. This is a significant gap for a tool with no annotation coverage.

    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, efficient sentence that directly states the tool's function without any wasted words. It is front-loaded with the core action ('parse') and resource ('SRT file content'), making it easy to understand at a glance.

    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 the tool's complexity (parsing structured data) and the lack of annotations and output schema, the description is incomplete. It doesn't explain what 'structured data' means in the return value, how errors are handled, or any constraints on the input content. For a parsing tool with no structured output documentation, this leaves critical gaps for the agent.

    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 input schema has 100% description coverage, with the 'content' parameter clearly documented as 'SRT file content to parse.' The description adds no additional meaning beyond this, as it only repeats that it parses 'SRT file content.' Given the high schema coverage, the baseline score of 3 is appropriate, as the schema already does the heavy lifting.

    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's purpose with a specific verb ('parse') and resource ('SRT file content'), making it immediately understandable. However, it doesn't distinguish this tool from sibling tools like 'translate_srt' or 'write_srt' that also work with SRT files, which prevents a perfect score.

    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 guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'translate_srt' (for translation) or 'write_srt' (for writing), nor does it specify prerequisites such as needing valid SRT content. This leaves the agent without context for tool selection.

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

  • Behavior4/5

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

    With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes what the tool does (parses SRT, extracts text, preserves timing/formatting, returns structured data) and what it doesn't do (translate automatically). It mentions the return format and provides critical instructions about the AI's role. However, it doesn't specify error handling, performance characteristics, or authentication needs.

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

    Conciseness2/5

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

    The description is excessively long with redundant sections and excessive emoji/formatting. Multiple sections repeat the same core message about being a helper tool (CRITICAL, PURPOSE, WHAT IT DOES NOT DO, CRITICAL INSTRUCTIONS). While information is front-loaded, the overall structure is bloated with unnecessary visual elements and repetition that don't add value.

    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 tool with no annotations and no output schema, the description does an excellent job explaining what the tool returns ('Structured SRT data with original text, Timing and formatting information, Translation context and metadata, Ready-to-translate format for AI'). It provides workflow context and distinguishes the tool's role from the AI's translation work. The main gap is lack of specific output format details that an output schema would provide.

    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 100%, providing good baseline documentation for all three parameters. The description adds minimal parameter-specific information beyond the schema, though it does provide usage patterns that show example parameter values and clarifies that sourceLanguage is optional with auto-detection. This meets the baseline expectation when schema coverage is high.

    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 explicitly states the tool's purpose: 'This tool helps prepare SRT content for AI translation but DOES NOT translate text itself.' It distinguishes itself from translation tools by emphasizing it's a helper tool that extracts and structures subtitle text for AI translation, not performing translation. The distinction from siblings like 'parse_srt' is implied through its specific translation-preparation focus.

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

    Usage Guidelines5/5

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

    The description provides explicit guidance on when to use this tool: in a recommended workflow with 'detect_conversations' and 'get_next_chunk' as prerequisites, and 'write_srt' as a likely follow-up. It clearly states what it does NOT do (translate automatically), and includes usage patterns for full files or individual chunks. Alternatives are implied through the workflow steps and sibling tools.

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

  • Behavior4/5

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

    With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes key behaviors: automatic tracking of chunk sequence, advancement to the next chunk on each call, and returning null when processing is complete. It also notes prerequisites like storing the sessionId. However, it lacks details on error handling or performance aspects like rate limits.

    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 well-structured with clear sections (PURPOSE, HOW IT WORKS, etc.) and uses emojis for visual organization, making it easy to scan. However, it includes some redundant information, such as repeating the sessionId parameter details that are already in the schema, slightly reducing efficiency. Overall, it is appropriately sized and front-loaded with key information.

    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?

    Given the tool's complexity (sequential retrieval with state tracking), no annotations, and no output schema, the description provides comprehensive context. It explains the workflow, return values (chunk, chunkIndex, etc.), usage patterns, and notes on behavior like automatic advancement. This compensates well for the lack of structured data, making it complete for agent understanding.

    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 100%, with the schema fully documenting the single parameter sessionId. The description adds minimal value beyond the schema by repeating the parameter name and its source, but does not provide additional semantic context or usage nuances. This meets the baseline of 3 when schema coverage is high.

    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 explicitly states the tool's purpose as 'Retrieves the next chunk from memory for sequential processing,' specifying both the verb (retrieves) and resource (chunk from memory). It clearly distinguishes from sibling tools like detect_conversations, parse_srt, and translate_srt by focusing on sequential retrieval rather than detection, parsing, or translation.

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

    Usage Guidelines5/5

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

    The description provides explicit guidance on when to use this tool: 'Use this after detect_conversations with storeInMemory=true' and includes a detailed usage pattern with numbered steps. It also specifies alternatives indirectly by naming other tools in the workflow, such as using translate_srt() on individual chunks after retrieval.

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

  • Behavior4/5

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

    With no annotations provided, the description carries full burden and does an excellent job disclosing behavioral traits: it explains the tool auto-detects input types (file paths vs content), stores chunks in memory to avoid context limits, creates TODO tasks, returns only metadata (not content), and produces small responses to prevent context overflow. It doesn't mention error handling or performance characteristics, keeping it from a perfect score.

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

    Conciseness3/5

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

    While well-structured with clear sections, the description is verbose with decorative elements (emojis, all-caps headers) that don't add functional value. The core information could be conveyed more efficiently. However, every sentence does serve a purpose in explaining the tool's role in the workflow.

    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 tool with no annotations and no output schema, the description provides exceptional completeness: it explains what the tool does, how to use it in context with sibling tools, what parameters mean, what behavior to expect, what gets returned, and provides concrete examples. This fully compensates for the lack of structured metadata.

    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?

    With 100% schema description coverage, the baseline is 3. The description adds meaningful context beyond the schema: it explains the auto-detection behavior for the 'content' parameter, provides concrete examples of both input types, and clarifies the purpose of storeInMemory (to avoid context limits) and createTodos (for tracking progress). This adds substantial practical guidance.

    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 clearly states the tool analyzes SRT files and creates intelligent chunks for translation, distinguishing it from siblings like parse_srt (which likely parses without chunking) and translate_srt (which handles actual translation). It specifies the verb (analyzes/creates) and resource (SRT files) with specific scope (chunk-based translation workflow).

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

    Usage Guidelines5/5

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

    The description provides explicit guidance on when to use this tool versus alternatives, including a recommended workflow (step 1), explicit instructions to use get_next_chunk() for content retrieval and translate_srt() for translation, and warnings that this returns metadata only. It clearly positions this as the entry point in a multi-step process.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

srt-mcp MCP server

Copy to your README.md:

Score Badge

srt-mcp MCP server

Copy to your README.md:

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/omd0/srt-mcp'

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