Skip to main content
Glama

Server Details

Convert subtitles, transcripts, broadcast captions (SCC/MCC/STL), EDLs, and Premiere files.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Uptime
100.0% over 22 days
Last Tested
Transport
Streamable HTTP · MCP 2025-06-18
URL

TDQS

A4.4/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: converting, inspecting, listing supported conversions, and timecode math. There is no functional overlap between any two tools.

Naming Consistency4/5

Three tools follow a clear verb_noun snake_case pattern (convert_file, inspect_file, list_converters). timecode_calculate deviates by putting the noun first before the verb, so the pattern is slightly inconsistent.

Tool Count5/5

Four tools is a well-scoped, minimal set for a conversion server. Each tool covers a necessary aspect of the workflow without bloat or redundancy.

Completeness5/5

The server covers the full conversion lifecycle: performing conversions, detecting formats, enumerating supported formats/target, and even offering a timecode utility. There are no obvious missing operations for the stated purpose.

Available Tools

4 tools
convert_fileConvert a post-production fileAInspect

Convert a subtitle, transcript, caption, EDL, FCPXML, or Premiere .prtranscript file. Pass text file contents in content; pass binary files (.prtranscript) as base64 in content_base64. The filename extension drives format detection. Use target from list_converters to pick the output, or leave it as "auto" to get the default output for the detected format. Returns the converted file content (text formats inline; DOCX/ZIP as base64).

ParametersJSON Schema
NameRequiredDescriptionDefault
targetNoConversion target id from list_converters, or "auto" for the default output.
contentNoThe file content for text formats (SRT, VTT, TXT, EDL, JSON, FCPXML, …).
filenameYesOriginal file name including extension, e.g. "episode1.srt" — drives format detection.
frame_rateNoFrame rate for frame-based outputs such as ITT. Defaults to auto.
content_base64NoBase64-encoded bytes for binary formats (.prtranscript).
caption_languageNoBCP 47 caption language for ITT/TTML, e.g. en-US or ja. Defaults to the source language or undetermined.

TDQS

A4.2/5.0
Behavior3/5

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

Annotations already indicate readOnlyHint=false and destructiveHint=false, so no safety contradiction exists. The description adds useful behavioral disclosure about return content (text inline, DOCX/ZIP as base64) and the role of filename in detection, but it does not cover edge cases like unsupported extensions, oversize files, or what happens if both content and content_base64 are supplied. With annotations present, this is adequate but not exceptional.

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?

Three tightly packed sentences with no wasted words. The most important usage facts (what it converts, how to pass content, output behavior) are front-loaded, and the output-encoding detail is placed at the end.

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 conversion tool with no output schema, the description covers the main calling flow, input mechanism, target selection, and return format. It doesn't list all possible target formats or explain error behavior, but the enum in the schema and the reference to list_converters provide that context. Minor gaps remain around binary detection and ambiguous filename cases.

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 parameters are already fully described in the schema. The description adds value by linking `target` to list_converters and explaining the content/content_base64 split, but it does not reveal which target values are text-returning vs base64-returning. The schema carries most of the semantic burden.

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 ('Convert') and explicitly enumerates the supported input formats and key behaviors (filename-driven detection, target selection, output encoding). It distinguishes itself from the sibling tools: inspect_file reads/inspects rather than converts, list_converters lists available targets, and timecode_calculate performs timecode math.

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 gives direct instructions: pass text in `content`, binary in `content_base64`, use `target` from list_converters, or leave "auto". It also clarifies that the filename extension drives format detection. This is explicit practical guidance for when and how to invoke the tool.

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

inspect_fileDetect a file’s formatA
Read-only
Inspect

Detect the format of a subtitle/transcript/EDL/FCPXML file and report what CutConvert would produce from it, without performing the conversion or using quota.

ParametersJSON Schema
NameRequiredDescriptionDefault
contentNoFile content (text formats).
filenameYesOriginal file name including extension.
content_base64NoBase64 bytes (binary formats like .prtranscript).

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, covering the safety profile. The description adds a valuable behavioral detail—'without using quota'—which is not in the annotations. It also clarifies the tool's read-only nature by saying it does not perform conversion. This goes beyond the baseline but does not describe potential error conditions or the exact format of the report.

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?

A single sentence that is front-loaded with the core purpose and the key constraint (no conversion, no quota). It is concise with zero filler words, making it easy for an agent to parse quickly.

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?

The description does not explain how the parameters relate (e.g., whether content/content_base64 are alternatives to reading from filename, or if filename alone is sufficient). It also does not describe the structure of the 'report' beyond saying it indicates what CutConvert would produce, which is vague given there is no output schema. These gaps could leave an agent uncertain about invocation details.

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 three parameters (content, filename, content_base64). The description does not add any parameter-specific meaning beyond the schema, so the baseline of 3 applies.

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 verb 'detect' and the resource 'format of a subtitle/transcript/EDL/FCPXML file', and specifies it reports what CutConvert would produce. This distinguishes it from siblings like convert_file (which actually converts) and list_converters (which lists converters), so an agent can tell them apart without inspecting schemas.

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 explicitly notes 'without performing the conversion or using quota', which gives a clear condition for when to use this tool—when a preview of the output is needed without an actual conversion. However, it does not name alternative tools directly or state when NOT to use it, leaving the differentiation to inference from sibling names.

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

list_convertersList supported convertersA
Read-only
Inspect

List every conversion CutConvert supports (source format, output format, and the target id to pass to convert_file).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, covering the safety profile. The description adds value by specifying what data is returned (source format, output format, target id) and confirming completeness ('every conversion'), which goes beyond the annotations. However, it does not describe any pagination, ordering, or error behavior, and for a simple list tool this is a minor gap given the 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 concise sentence that front-loads the core purpose ('List every conversion CutConvert supports') and then specifies the exact content (source, output, target id) and its downstream use. Every word earns its place with no redundancy or fluff.

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 that there are no parameters, no output schema, and annotations cover the read-only and non-destructive nature, the description fully equips an agent. It explains what will be listed and how the result relates to convert_file, leaving nothing critical missing for a simple listing 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 there is nothing for the description to explain. Schema coverage is complete (100%) by default. The baseline for 0 params is 4, and the description does not introduce any parameter-related ambiguity or missing information, so it fully meets the baseline.

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 'List' and a precise resource: 'every conversion CutConvert supports', detailing exactly what is included (source format, output format, and target id). It clearly distinguishes from siblings like convert_file (which performs conversions) and inspect_file (which inspects files), making the tool's 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 Guidelines4/5

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

The description implies a clear usage context by noting the target id is 'to pass to convert_file', suggesting this tool is a discovery step before conversion. It doesn't explicitly state when not to use it or mention alternatives, but the relationship to convert_file is evident without requiring further inference.

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

timecode_calculateSMPTE timecode calculatorA
Read-only
Inspect

Parse an SMPTE timecode at a frame rate (including 29.97/59.94 drop-frame) and report its frame count and real elapsed seconds; optionally re-express it at another rate.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNoWhen converting rates: "time" keeps the same real-world moment (conform, default); "frames" keeps the frame count (reinterpret).
rateYesFrame rate the timecode is expressed in.
to_rateNoOptional target frame rate to convert to.
timecodeYesTimecode like "01:00:02:12" (use ";" before frames for drop-frame).

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already establish that this is read-only and non-destructive. The description adds meaningful behavioral context beyond those hints: it reports frame count and real elapsed seconds, handles drop-frame rates, and supports optional rate conversion. No contradictions exist, and the safety profile matches the stated 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?

The description is a single tightly written sentence with no filler. It front-loads the core action, then efficiently covers the optional conversion capability. Every clause 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 read-only calculator with fully documented parameters, the description covers the essential inputs, supported rate families, output concepts, and optional conversion path. There is no output schema, so a bit more detail about return formatting or drop-frame ambiguity could help, but the description is sufficient for an agent to understand what the tool does and what it returns.

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%, and every parameter is individually documented with clear descriptions, enums, and required flags. The description's mention of drop-frame rates and rate conversion reinforces the schema but does not add meaning beyond the structured parameter definitions, so the baseline score of 3 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 opens with a specific verb ('Parse') and a concrete resource ('an SMPTE timecode'), then states exactly what the tool produces: frame count, real elapsed seconds, and optional re-expression at another rate. This clearly distinguishes it from the file-oriented sibling tools (convert_file, inspect_file, list_converters).

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 conveys clear usage context: use this when you need to parse, measure, or convert SMPTE timecodes. It mentions the optional conversion behavior via 're-express it at another rate,' and the schema further defines modes. However, it does not explicitly name alternatives or state when not to use it, though the siblings are not plausible substitutes.

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.

  1. 1 tool update
    • Changedconvert_file1 field changed
      • changedInput schema / properties / target / enum
        Previous value: -[
        -  "auto",
        -  "fcpxmlAaf",
        -  "prprojRpp",
        -  "sesxRpp",
        -  "avbCsv",
        -  "srtJson",
        -  "srtAvidTxt",
        -  "txtSrt",
        -  "edlCsv",
        -  "txtJson",
        -  "wordJson",
        -  "srtSbv",
        -  "srtAss",
        -  "srtVtt",
        -  "prtranscriptSrt",
        -  "prtranscriptVtt",
        -  "vttSrt",
        -  "srtText",
        -  "vttText",
        -  "prprojXml",
        -  "prprojDrp",
        -  "aafXml",
        -  "aafDrp",
        -  "fcpxmlXml",
        -  "fcpxmlDrp",
        -  "fcpxmlEdl",
        -  "fcpxmlShotlist",
        -  "drpXml",
        -  "prprojCsv",
        -  "prprojEdl",
        -  "prprojFcpxml",
        -  "drpFcpxml",
        -  "aafFcpxml",
        -  "drpCsv",
        -  "drpEdl",
        -  "aafCsv",
        -  "aafEdl",
        -  "prtranscriptDocx",
        -  "prtranscriptCsv",
        -  "capcutSrt",
        -  "jsonVtt",
        -  "jsonDocx",
        -  "jsonText",
        -  "sccCsv",
        -  "mccCsv",
        -  "stlCsv",
        -  "fcpxmlDocx",
        -  "fcpxmlCsv",
        -  "prtranscriptText",
        -  "srtItt",
        -  "srtTtml",
        -  "sbvSrt",
        -  "srtDocx",
        -  "vttDocx",
        -  "assSrt",
        -  "jsonJson",
        -  "jsonSrt",
        -  "srtCsv",
        -  "csvSrt",
        -  "srtFcpxml",
        -  "fcpxmlSrt",
        -  "srtScc",
        -  "sccSrt",
        -  "srtMcc",
        -  "mccSrt",
        -  "srtStl",
        -  "stlSrt",
        -  "aafRpp",
        -  "fcpxmlRpp",
        -  "drpRpp"
        -]New value: +[
        +  "auto",
        +  "prprojAaf",
        +  "fcpxmlAaf",
        +  "prprojRpp",
        +  "sesxRpp",
        +  "avbCsv",
        +  "srtJson",
        +  "srtAvidTxt",
        +  "txtSrt",
        +  "edlCsv",
        +  "txtJson",
        +  "wordJson",
        +  "srtSbv",
        +  "srtAss",
        +  "srtVtt",
        +  "prtranscriptSrt",
        +  "prtranscriptVtt",
        +  "vttSrt",
        +  "srtText",
        +  "vttText",
        +  "prprojXml",
        +  "prprojDrp",
        +  "aafXml",
        +  "aafDrp",
        +  "fcpxmlXml",
        +  "fcpxmlDrp",
        +  "fcpxmlEdl",
        +  "fcpxmlShotlist",
        +  "drpXml",
        +  "prprojCsv",
        +  "prprojEdl",
        +  "prprojFcpxml",
        +  "drpFcpxml",
        +  "aafFcpxml",
        +  "drpCsv",
        +  "drpEdl",
        +  "aafCsv",
        +  "aafEdl",
        +  "prtranscriptDocx",
        +  "prtranscriptCsv",
        +  "capcutSrt",
        +  "jsonVtt",
        +  "jsonDocx",
        +  "jsonText",
        +  "sccCsv",
        +  "mccCsv",
        +  "stlCsv",
        +  "fcpxmlDocx",
        +  "fcpxmlCsv",
        +  "prtranscriptText",
        +  "srtItt",
        +  "srtTtml",
        +  "sbvSrt",
        +  "srtDocx",
        +  "vttDocx",
        +  "assSrt",
        +  "jsonJson",
        +  "jsonSrt",
        +  "srtCsv",
        +  "csvSrt",
        +  "srtFcpxml",
        +  "fcpxmlSrt",
        +  "srtScc",
        +  "sccSrt",
        +  "srtMcc",
        +  "mccSrt",
        +  "srtStl",
        +  "stlSrt",
        +  "aafRpp",
        +  "fcpxmlRpp",
        +  "drpRpp"
        +]
  2. 1 tool update
    • Changedconvert_file1 field changed
      • changedInput schema / properties / target / enum
        Previous value: -[
        -  "auto",
        -  "fcpxmlAaf",
        -  "prprojRpp",
        -  "sesxRpp",
        -  "avbCsv",
        -  "srtJson",
        -  "srtAvidTxt",
        -  "txtSrt",
        -  "edlCsv",
        -  "txtJson",
        -  "wordJson",
        -  "srtSbv",
        -  "srtAss",
        -  "srtVtt",
        -  "prtranscriptSrt",
        -  "prtranscriptVtt",
        -  "vttSrt",
        -  "srtText",
        -  "vttText",
        -  "prprojXml",
        -  "prprojDrp",
        -  "aafXml",
        -  "aafDrp",
        -  "fcpxmlXml",
        -  "fcpxmlDrp",
        -  "fcpxmlEdl",
        -  "fcpxmlShotlist",
        -  "drpXml",
        -  "prprojCsv",
        -  "prprojEdl",
        -  "prprojFcpxml",
        -  "drpFcpxml",
        -  "aafFcpxml",
        -  "drpCsv",
        -  "drpEdl",
        -  "aafCsv",
        -  "aafEdl",
        -  "prtranscriptDocx",
        -  "prtranscriptCsv",
        -  "capcutSrt",
        -  "jsonVtt",
        -  "jsonDocx",
        -  "jsonText",
        -  "sccCsv",
        -  "mccCsv",
        -  "stlCsv",
        -  "fcpxmlDocx",
        -  "fcpxmlCsv",
        -  "prtranscriptText",
        -  "srtItt",
        -  "srtTtml",
        -  "sbvSrt",
        -  "srtDocx",
        -  "vttDocx",
        -  "assSrt",
        -  "jsonJson",
        -  "jsonSrt",
        -  "srtCsv",
        -  "csvSrt",
        -  "srtFcpxml",
        -  "fcpxmlSrt",
        -  "srtScc",
        -  "sccSrt",
        -  "srtMcc",
        -  "mccSrt",
        -  "srtStl",
        -  "stlSrt"
        -]New value: +[
        +  "auto",
        +  "fcpxmlAaf",
        +  "prprojRpp",
        +  "sesxRpp",
        +  "avbCsv",
        +  "srtJson",
        +  "srtAvidTxt",
        +  "txtSrt",
        +  "edlCsv",
        +  "txtJson",
        +  "wordJson",
        +  "srtSbv",
        +  "srtAss",
        +  "srtVtt",
        +  "prtranscriptSrt",
        +  "prtranscriptVtt",
        +  "vttSrt",
        +  "srtText",
        +  "vttText",
        +  "prprojXml",
        +  "prprojDrp",
        +  "aafXml",
        +  "aafDrp",
        +  "fcpxmlXml",
        +  "fcpxmlDrp",
        +  "fcpxmlEdl",
        +  "fcpxmlShotlist",
        +  "drpXml",
        +  "prprojCsv",
        +  "prprojEdl",
        +  "prprojFcpxml",
        +  "drpFcpxml",
        +  "aafFcpxml",
        +  "drpCsv",
        +  "drpEdl",
        +  "aafCsv",
        +  "aafEdl",
        +  "prtranscriptDocx",
        +  "prtranscriptCsv",
        +  "capcutSrt",
        +  "jsonVtt",
        +  "jsonDocx",
        +  "jsonText",
        +  "sccCsv",
        +  "mccCsv",
        +  "stlCsv",
        +  "fcpxmlDocx",
        +  "fcpxmlCsv",
        +  "prtranscriptText",
        +  "srtItt",
        +  "srtTtml",
        +  "sbvSrt",
        +  "srtDocx",
        +  "vttDocx",
        +  "assSrt",
        +  "jsonJson",
        +  "jsonSrt",
        +  "srtCsv",
        +  "csvSrt",
        +  "srtFcpxml",
        +  "fcpxmlSrt",
        +  "srtScc",
        +  "sccSrt",
        +  "srtMcc",
        +  "mccSrt",
        +  "srtStl",
        +  "stlSrt",
        +  "aafRpp",
        +  "fcpxmlRpp",
        +  "drpRpp"
        +]
  3. 1 tool update
    • Changedconvert_file3 fields changed
      • addedInput schema / properties / caption_language
        Added value: +{
        +  "description": "BCP 47 caption language for ITT/TTML, e.g. en-US or ja. Defaults to the source language or undetermined.",
        +  "type": "string"
        +}
      • addedInput schema / properties / frame_rate
        Added value: +{
        +  "description": "Frame rate for frame-based outputs such as ITT. Defaults to auto.",
        +  "enum": [
        +    "auto",
        +    "23.976",
        +    "24",
        +    "25",
        +    "29.97",
        +    "30",
        +    "50",
        +    "59.94",
        +    "60"
        +  ],
        +  "type": "string"
        +}
      • changedInput schema / properties / target / enum
        Previous value: -[
        -  "auto",
        -  "fcpxmlAaf",
        -  "prprojRpp",
        -  "sesxRpp",
        -  "avbCsv",
        -  "srtJson",
        -  "srtAvidTxt",
        -  "txtSrt",
        -  "edlCsv",
        -  "txtJson",
        -  "wordJson",
        -  "srtSbv",
        -  "srtAss",
        -  "srtVtt",
        -  "prtranscriptSrt",
        -  "prtranscriptVtt",
        -  "vttSrt",
        -  "srtText",
        -  "vttText",
        -  "prprojXml",
        -  "prprojDrp",
        -  "aafXml",
        -  "aafDrp",
        -  "fcpxmlXml",
        -  "fcpxmlDrp",
        -  "fcpxmlEdl",
        -  "fcpxmlShotlist",
        -  "drpXml",
        -  "prprojCsv",
        -  "prprojEdl",
        -  "prprojFcpxml",
        -  "drpFcpxml",
        -  "aafFcpxml",
        -  "drpCsv",
        -  "drpEdl",
        -  "aafCsv",
        -  "aafEdl",
        -  "prtranscriptDocx",
        -  "prtranscriptCsv",
        -  "capcutSrt",
        -  "jsonVtt",
        -  "jsonDocx",
        -  "jsonText",
        -  "sccCsv",
        -  "mccCsv",
        -  "stlCsv",
        -  "fcpxmlDocx",
        -  "fcpxmlCsv",
        -  "prtranscriptText",
        -  "sbvSrt",
        -  "srtDocx",
        -  "vttDocx",
        -  "assSrt",
        -  "jsonJson",
        -  "jsonSrt",
        -  "srtCsv",
        -  "csvSrt",
        -  "srtFcpxml",
        -  "fcpxmlSrt",
        -  "srtScc",
        -  "sccSrt",
        -  "srtMcc",
        -  "mccSrt",
        -  "srtStl",
        -  "stlSrt"
        -]New value: +[
        +  "auto",
        +  "fcpxmlAaf",
        +  "prprojRpp",
        +  "sesxRpp",
        +  "avbCsv",
        +  "srtJson",
        +  "srtAvidTxt",
        +  "txtSrt",
        +  "edlCsv",
        +  "txtJson",
        +  "wordJson",
        +  "srtSbv",
        +  "srtAss",
        +  "srtVtt",
        +  "prtranscriptSrt",
        +  "prtranscriptVtt",
        +  "vttSrt",
        +  "srtText",
        +  "vttText",
        +  "prprojXml",
        +  "prprojDrp",
        +  "aafXml",
        +  "aafDrp",
        +  "fcpxmlXml",
        +  "fcpxmlDrp",
        +  "fcpxmlEdl",
        +  "fcpxmlShotlist",
        +  "drpXml",
        +  "prprojCsv",
        +  "prprojEdl",
        +  "prprojFcpxml",
        +  "drpFcpxml",
        +  "aafFcpxml",
        +  "drpCsv",
        +  "drpEdl",
        +  "aafCsv",
        +  "aafEdl",
        +  "prtranscriptDocx",
        +  "prtranscriptCsv",
        +  "capcutSrt",
        +  "jsonVtt",
        +  "jsonDocx",
        +  "jsonText",
        +  "sccCsv",
        +  "mccCsv",
        +  "stlCsv",
        +  "fcpxmlDocx",
        +  "fcpxmlCsv",
        +  "prtranscriptText",
        +  "srtItt",
        +  "srtTtml",
        +  "sbvSrt",
        +  "srtDocx",
        +  "vttDocx",
        +  "assSrt",
        +  "jsonJson",
        +  "jsonSrt",
        +  "srtCsv",
        +  "csvSrt",
        +  "srtFcpxml",
        +  "fcpxmlSrt",
        +  "srtScc",
        +  "sccSrt",
        +  "srtMcc",
        +  "mccSrt",
        +  "srtStl",
        +  "stlSrt"
        +]
  4. 1 tool update
    • Changedconvert_file1 field changed
      • changedInput schema / properties / target / enum
        Previous value: -[
        -  "auto",
        -  "srtJson",
        -  "srtAvidTxt",
        -  "txtSrt",
        -  "edlCsv",
        -  "txtJson",
        -  "wordJson",
        -  "srtSbv",
        -  "srtAss",
        -  "srtVtt",
        -  "prtranscriptSrt",
        -  "prtranscriptVtt",
        -  "vttSrt",
        -  "srtText",
        -  "vttText",
        -  "prprojXml",
        -  "prprojDrp",
        -  "aafXml",
        -  "aafDrp",
        -  "fcpxmlXml",
        -  "fcpxmlDrp",
        -  "fcpxmlEdl",
        -  "fcpxmlShotlist",
        -  "drpXml",
        -  "prprojCsv",
        -  "prprojEdl",
        -  "prprojFcpxml",
        -  "drpFcpxml",
        -  "aafFcpxml",
        -  "drpCsv",
        -  "drpEdl",
        -  "aafCsv",
        -  "aafEdl",
        -  "prtranscriptDocx",
        -  "prtranscriptCsv",
        -  "capcutSrt",
        -  "jsonVtt",
        -  "jsonDocx",
        -  "jsonText",
        -  "sccCsv",
        -  "mccCsv",
        -  "stlCsv",
        -  "fcpxmlDocx",
        -  "fcpxmlCsv",
        -  "prtranscriptText",
        -  "sbvSrt",
        -  "srtDocx",
        -  "vttDocx",
        -  "assSrt",
        -  "jsonJson",
        -  "jsonSrt",
        -  "srtCsv",
        -  "csvSrt",
        -  "srtFcpxml",
        -  "fcpxmlSrt",
        -  "srtScc",
        -  "sccSrt",
        -  "srtMcc",
        -  "mccSrt",
        -  "srtStl",
        -  "stlSrt"
        -]New value: +[
        +  "auto",
        +  "fcpxmlAaf",
        +  "prprojRpp",
        +  "sesxRpp",
        +  "avbCsv",
        +  "srtJson",
        +  "srtAvidTxt",
        +  "txtSrt",
        +  "edlCsv",
        +  "txtJson",
        +  "wordJson",
        +  "srtSbv",
        +  "srtAss",
        +  "srtVtt",
        +  "prtranscriptSrt",
        +  "prtranscriptVtt",
        +  "vttSrt",
        +  "srtText",
        +  "vttText",
        +  "prprojXml",
        +  "prprojDrp",
        +  "aafXml",
        +  "aafDrp",
        +  "fcpxmlXml",
        +  "fcpxmlDrp",
        +  "fcpxmlEdl",
        +  "fcpxmlShotlist",
        +  "drpXml",
        +  "prprojCsv",
        +  "prprojEdl",
        +  "prprojFcpxml",
        +  "drpFcpxml",
        +  "aafFcpxml",
        +  "drpCsv",
        +  "drpEdl",
        +  "aafCsv",
        +  "aafEdl",
        +  "prtranscriptDocx",
        +  "prtranscriptCsv",
        +  "capcutSrt",
        +  "jsonVtt",
        +  "jsonDocx",
        +  "jsonText",
        +  "sccCsv",
        +  "mccCsv",
        +  "stlCsv",
        +  "fcpxmlDocx",
        +  "fcpxmlCsv",
        +  "prtranscriptText",
        +  "sbvSrt",
        +  "srtDocx",
        +  "vttDocx",
        +  "assSrt",
        +  "jsonJson",
        +  "jsonSrt",
        +  "srtCsv",
        +  "csvSrt",
        +  "srtFcpxml",
        +  "fcpxmlSrt",
        +  "srtScc",
        +  "sccSrt",
        +  "srtMcc",
        +  "mccSrt",
        +  "srtStl",
        +  "stlSrt"
        +]
  5. 1 tool update
    • Changedconvert_file1 field changed
      • changedInput schema / properties / target / enum
        Previous value: -[
        -  "auto",
        -  "srtJson",
        -  "srtAvidTxt",
        -  "txtSrt",
        -  "edlCsv",
        -  "txtJson",
        -  "wordJson",
        -  "srtVtt",
        -  "prtranscriptSrt",
        -  "prtranscriptVtt",
        -  "vttSrt",
        -  "srtText",
        -  "vttText",
        -  "prprojXml",
        -  "prprojDrp",
        -  "aafXml",
        -  "aafDrp",
        -  "fcpxmlXml",
        -  "fcpxmlDrp",
        -  "fcpxmlEdl",
        -  "fcpxmlShotlist",
        -  "drpXml",
        -  "prprojCsv",
        -  "prprojEdl",
        -  "prprojFcpxml",
        -  "drpFcpxml",
        -  "aafFcpxml",
        -  "drpCsv",
        -  "drpEdl",
        -  "aafCsv",
        -  "aafEdl",
        -  "prtranscriptDocx",
        -  "prtranscriptCsv",
        -  "capcutSrt",
        -  "jsonVtt",
        -  "jsonDocx",
        -  "jsonText",
        -  "sccCsv",
        -  "mccCsv",
        -  "stlCsv",
        -  "fcpxmlDocx",
        -  "fcpxmlCsv",
        -  "prtranscriptText",
        -  "sbvSrt",
        -  "srtDocx",
        -  "vttDocx",
        -  "assSrt",
        -  "jsonJson",
        -  "jsonSrt",
        -  "srtCsv",
        -  "csvSrt",
        -  "srtFcpxml",
        -  "fcpxmlSrt",
        -  "srtScc",
        -  "sccSrt",
        -  "srtMcc",
        -  "mccSrt",
        -  "srtStl",
        -  "stlSrt"
        -]New value: +[
        +  "auto",
        +  "srtJson",
        +  "srtAvidTxt",
        +  "txtSrt",
        +  "edlCsv",
        +  "txtJson",
        +  "wordJson",
        +  "srtSbv",
        +  "srtAss",
        +  "srtVtt",
        +  "prtranscriptSrt",
        +  "prtranscriptVtt",
        +  "vttSrt",
        +  "srtText",
        +  "vttText",
        +  "prprojXml",
        +  "prprojDrp",
        +  "aafXml",
        +  "aafDrp",
        +  "fcpxmlXml",
        +  "fcpxmlDrp",
        +  "fcpxmlEdl",
        +  "fcpxmlShotlist",
        +  "drpXml",
        +  "prprojCsv",
        +  "prprojEdl",
        +  "prprojFcpxml",
        +  "drpFcpxml",
        +  "aafFcpxml",
        +  "drpCsv",
        +  "drpEdl",
        +  "aafCsv",
        +  "aafEdl",
        +  "prtranscriptDocx",
        +  "prtranscriptCsv",
        +  "capcutSrt",
        +  "jsonVtt",
        +  "jsonDocx",
        +  "jsonText",
        +  "sccCsv",
        +  "mccCsv",
        +  "stlCsv",
        +  "fcpxmlDocx",
        +  "fcpxmlCsv",
        +  "prtranscriptText",
        +  "sbvSrt",
        +  "srtDocx",
        +  "vttDocx",
        +  "assSrt",
        +  "jsonJson",
        +  "jsonSrt",
        +  "srtCsv",
        +  "csvSrt",
        +  "srtFcpxml",
        +  "fcpxmlSrt",
        +  "srtScc",
        +  "sccSrt",
        +  "srtMcc",
        +  "mccSrt",
        +  "srtStl",
        +  "stlSrt"
        +]
  6. 1 tool update
    • Changedconvert_file1 field changed
      • changedInput schema / properties / target / enum
        Previous value: -[
        -  "auto",
        -  "srtJson",
        -  "srtAvidTxt",
        -  "txtSrt",
        -  "edlCsv",
        -  "txtJson",
        -  "wordJson",
        -  "srtVtt",
        -  "prtranscriptSrt",
        -  "prtranscriptVtt",
        -  "vttSrt",
        -  "srtText",
        -  "vttText",
        -  "prprojXml",
        -  "prprojDrp",
        -  "aafXml",
        -  "aafDrp",
        -  "fcpxmlXml",
        -  "fcpxmlDrp",
        -  "drpXml",
        -  "prprojCsv",
        -  "prprojEdl",
        -  "prprojFcpxml",
        -  "drpFcpxml",
        -  "aafFcpxml",
        -  "drpCsv",
        -  "drpEdl",
        -  "aafCsv",
        -  "aafEdl",
        -  "prtranscriptDocx",
        -  "prtranscriptCsv",
        -  "capcutSrt",
        -  "jsonVtt",
        -  "jsonDocx",
        -  "jsonText",
        -  "sccCsv",
        -  "mccCsv",
        -  "stlCsv",
        -  "fcpxmlDocx",
        -  "fcpxmlCsv",
        -  "prtranscriptText",
        -  "sbvSrt",
        -  "srtDocx",
        -  "vttDocx",
        -  "assSrt",
        -  "jsonJson",
        -  "jsonSrt",
        -  "srtCsv",
        -  "csvSrt",
        -  "srtFcpxml",
        -  "fcpxmlSrt",
        -  "srtScc",
        -  "sccSrt",
        -  "srtMcc",
        -  "mccSrt",
        -  "srtStl",
        -  "stlSrt"
        -]New value: +[
        +  "auto",
        +  "srtJson",
        +  "srtAvidTxt",
        +  "txtSrt",
        +  "edlCsv",
        +  "txtJson",
        +  "wordJson",
        +  "srtVtt",
        +  "prtranscriptSrt",
        +  "prtranscriptVtt",
        +  "vttSrt",
        +  "srtText",
        +  "vttText",
        +  "prprojXml",
        +  "prprojDrp",
        +  "aafXml",
        +  "aafDrp",
        +  "fcpxmlXml",
        +  "fcpxmlDrp",
        +  "fcpxmlEdl",
        +  "fcpxmlShotlist",
        +  "drpXml",
        +  "prprojCsv",
        +  "prprojEdl",
        +  "prprojFcpxml",
        +  "drpFcpxml",
        +  "aafFcpxml",
        +  "drpCsv",
        +  "drpEdl",
        +  "aafCsv",
        +  "aafEdl",
        +  "prtranscriptDocx",
        +  "prtranscriptCsv",
        +  "capcutSrt",
        +  "jsonVtt",
        +  "jsonDocx",
        +  "jsonText",
        +  "sccCsv",
        +  "mccCsv",
        +  "stlCsv",
        +  "fcpxmlDocx",
        +  "fcpxmlCsv",
        +  "prtranscriptText",
        +  "sbvSrt",
        +  "srtDocx",
        +  "vttDocx",
        +  "assSrt",
        +  "jsonJson",
        +  "jsonSrt",
        +  "srtCsv",
        +  "csvSrt",
        +  "srtFcpxml",
        +  "fcpxmlSrt",
        +  "srtScc",
        +  "sccSrt",
        +  "srtMcc",
        +  "mccSrt",
        +  "srtStl",
        +  "stlSrt"
        +]
  7. 1 tool update
    • Changedconvert_file1 field changed
      • changedInput schema / properties / target / enum
        Previous value: -[
        -  "auto",
        -  "srtJson",
        -  "srtAvidTxt",
        -  "txtSrt",
        -  "edlCsv",
        -  "txtJson",
        -  "wordJson",
        -  "srtVtt",
        -  "prtranscriptSrt",
        -  "prtranscriptVtt",
        -  "vttSrt",
        -  "srtText",
        -  "vttText",
        -  "prprojXml",
        -  "prprojDrp",
        -  "aafXml",
        -  "aafDrp",
        -  "fcpxmlXml",
        -  "fcpxmlDrp",
        -  "drpXml",
        -  "prprojCsv",
        -  "prprojEdl",
        -  "prprojFcpxml",
        -  "drpFcpxml",
        -  "aafFcpxml",
        -  "drpCsv",
        -  "drpEdl",
        -  "aafCsv",
        -  "aafEdl",
        -  "prtranscriptDocx",
        -  "prtranscriptCsv",
        -  "capcutSrt",
        -  "jsonVtt",
        -  "jsonDocx",
        -  "jsonText",
        -  "sccCsv",
        -  "mccCsv",
        -  "stlCsv",
        -  "fcpxmlDocx",
        -  "fcpxmlCsv",
        -  "prtranscriptText",
        -  "sbvSrt",
        -  "srtDocx",
        -  "vttDocx",
        -  "assSrt",
        -  "jsonSrt",
        -  "srtCsv",
        -  "csvSrt",
        -  "srtFcpxml",
        -  "fcpxmlSrt",
        -  "srtScc",
        -  "sccSrt",
        -  "srtMcc",
        -  "mccSrt",
        -  "srtStl",
        -  "stlSrt"
        -]New value: +[
        +  "auto",
        +  "srtJson",
        +  "srtAvidTxt",
        +  "txtSrt",
        +  "edlCsv",
        +  "txtJson",
        +  "wordJson",
        +  "srtVtt",
        +  "prtranscriptSrt",
        +  "prtranscriptVtt",
        +  "vttSrt",
        +  "srtText",
        +  "vttText",
        +  "prprojXml",
        +  "prprojDrp",
        +  "aafXml",
        +  "aafDrp",
        +  "fcpxmlXml",
        +  "fcpxmlDrp",
        +  "drpXml",
        +  "prprojCsv",
        +  "prprojEdl",
        +  "prprojFcpxml",
        +  "drpFcpxml",
        +  "aafFcpxml",
        +  "drpCsv",
        +  "drpEdl",
        +  "aafCsv",
        +  "aafEdl",
        +  "prtranscriptDocx",
        +  "prtranscriptCsv",
        +  "capcutSrt",
        +  "jsonVtt",
        +  "jsonDocx",
        +  "jsonText",
        +  "sccCsv",
        +  "mccCsv",
        +  "stlCsv",
        +  "fcpxmlDocx",
        +  "fcpxmlCsv",
        +  "prtranscriptText",
        +  "sbvSrt",
        +  "srtDocx",
        +  "vttDocx",
        +  "assSrt",
        +  "jsonJson",
        +  "jsonSrt",
        +  "srtCsv",
        +  "csvSrt",
        +  "srtFcpxml",
        +  "fcpxmlSrt",
        +  "srtScc",
        +  "sccSrt",
        +  "srtMcc",
        +  "mccSrt",
        +  "srtStl",
        +  "stlSrt"
        +]
  8. 1 tool update
    • Changedconvert_file1 field changed
      • changedInput schema / properties / target / enum
        Previous value: -[
        -  "auto",
        -  "srtJson",
        -  "srtAvidTxt",
        -  "txtSrt",
        -  "edlCsv",
        -  "txtJson",
        -  "wordJson",
        -  "srtVtt",
        -  "prtranscriptSrt",
        -  "prtranscriptVtt",
        -  "vttSrt",
        -  "srtText",
        -  "vttText",
        -  "prprojXml",
        -  "prprojDrp",
        -  "aafXml",
        -  "aafDrp",
        -  "drpXml",
        -  "prprojCsv",
        -  "prprojEdl",
        -  "prprojFcpxml",
        -  "drpFcpxml",
        -  "aafFcpxml",
        -  "drpCsv",
        -  "drpEdl",
        -  "aafCsv",
        -  "aafEdl",
        -  "prtranscriptDocx",
        -  "prtranscriptCsv",
        -  "capcutSrt",
        -  "jsonVtt",
        -  "jsonDocx",
        -  "jsonText",
        -  "sccCsv",
        -  "mccCsv",
        -  "stlCsv",
        -  "fcpxmlDocx",
        -  "fcpxmlCsv",
        -  "prtranscriptText",
        -  "sbvSrt",
        -  "srtDocx",
        -  "vttDocx",
        -  "assSrt",
        -  "jsonSrt",
        -  "srtCsv",
        -  "csvSrt",
        -  "srtFcpxml",
        -  "fcpxmlSrt",
        -  "srtScc",
        -  "sccSrt",
        -  "srtMcc",
        -  "mccSrt",
        -  "srtStl",
        -  "stlSrt"
        -]New value: +[
        +  "auto",
        +  "srtJson",
        +  "srtAvidTxt",
        +  "txtSrt",
        +  "edlCsv",
        +  "txtJson",
        +  "wordJson",
        +  "srtVtt",
        +  "prtranscriptSrt",
        +  "prtranscriptVtt",
        +  "vttSrt",
        +  "srtText",
        +  "vttText",
        +  "prprojXml",
        +  "prprojDrp",
        +  "aafXml",
        +  "aafDrp",
        +  "fcpxmlXml",
        +  "fcpxmlDrp",
        +  "drpXml",
        +  "prprojCsv",
        +  "prprojEdl",
        +  "prprojFcpxml",
        +  "drpFcpxml",
        +  "aafFcpxml",
        +  "drpCsv",
        +  "drpEdl",
        +  "aafCsv",
        +  "aafEdl",
        +  "prtranscriptDocx",
        +  "prtranscriptCsv",
        +  "capcutSrt",
        +  "jsonVtt",
        +  "jsonDocx",
        +  "jsonText",
        +  "sccCsv",
        +  "mccCsv",
        +  "stlCsv",
        +  "fcpxmlDocx",
        +  "fcpxmlCsv",
        +  "prtranscriptText",
        +  "sbvSrt",
        +  "srtDocx",
        +  "vttDocx",
        +  "assSrt",
        +  "jsonSrt",
        +  "srtCsv",
        +  "csvSrt",
        +  "srtFcpxml",
        +  "fcpxmlSrt",
        +  "srtScc",
        +  "sccSrt",
        +  "srtMcc",
        +  "mccSrt",
        +  "srtStl",
        +  "stlSrt"
        +]
  9. 1 tool update
    • Changedconvert_file1 field changed
      • changedInput schema / properties / target / enum
        Previous value: -[
        -  "auto",
        -  "srtJson",
        -  "srtAvidTxt",
        -  "txtSrt",
        -  "edlCsv",
        -  "txtJson",
        -  "wordJson",
        -  "srtVtt",
        -  "prtranscriptSrt",
        -  "prtranscriptVtt",
        -  "vttSrt",
        -  "srtText",
        -  "vttText",
        -  "prprojXml",
        -  "prprojDrp",
        -  "aafXml",
        -  "aafDrp",
        -  "drpXml",
        -  "prprojCsv",
        -  "prprojEdl",
        -  "drpCsv",
        -  "drpEdl",
        -  "aafCsv",
        -  "aafEdl",
        -  "prtranscriptDocx",
        -  "prtranscriptCsv",
        -  "capcutSrt",
        -  "jsonVtt",
        -  "jsonDocx",
        -  "jsonText",
        -  "sccCsv",
        -  "mccCsv",
        -  "stlCsv",
        -  "fcpxmlDocx",
        -  "fcpxmlCsv",
        -  "prtranscriptText",
        -  "sbvSrt",
        -  "srtDocx",
        -  "vttDocx",
        -  "assSrt",
        -  "jsonSrt",
        -  "srtCsv",
        -  "csvSrt",
        -  "srtFcpxml",
        -  "fcpxmlSrt",
        -  "srtScc",
        -  "sccSrt",
        -  "srtMcc",
        -  "mccSrt",
        -  "srtStl",
        -  "stlSrt"
        -]New value: +[
        +  "auto",
        +  "srtJson",
        +  "srtAvidTxt",
        +  "txtSrt",
        +  "edlCsv",
        +  "txtJson",
        +  "wordJson",
        +  "srtVtt",
        +  "prtranscriptSrt",
        +  "prtranscriptVtt",
        +  "vttSrt",
        +  "srtText",
        +  "vttText",
        +  "prprojXml",
        +  "prprojDrp",
        +  "aafXml",
        +  "aafDrp",
        +  "drpXml",
        +  "prprojCsv",
        +  "prprojEdl",
        +  "prprojFcpxml",
        +  "drpFcpxml",
        +  "aafFcpxml",
        +  "drpCsv",
        +  "drpEdl",
        +  "aafCsv",
        +  "aafEdl",
        +  "prtranscriptDocx",
        +  "prtranscriptCsv",
        +  "capcutSrt",
        +  "jsonVtt",
        +  "jsonDocx",
        +  "jsonText",
        +  "sccCsv",
        +  "mccCsv",
        +  "stlCsv",
        +  "fcpxmlDocx",
        +  "fcpxmlCsv",
        +  "prtranscriptText",
        +  "sbvSrt",
        +  "srtDocx",
        +  "vttDocx",
        +  "assSrt",
        +  "jsonSrt",
        +  "srtCsv",
        +  "csvSrt",
        +  "srtFcpxml",
        +  "fcpxmlSrt",
        +  "srtScc",
        +  "sccSrt",
        +  "srtMcc",
        +  "mccSrt",
        +  "srtStl",
        +  "stlSrt"
        +]
  10. 1 tool update
    • Changedconvert_file1 field changed
      • changedInput schema / properties / target / enum
        Previous value: -[
        -  "auto",
        -  "srtJson",
        -  "srtAvidTxt",
        -  "txtSrt",
        -  "edlCsv",
        -  "txtJson",
        -  "wordJson",
        -  "srtVtt",
        -  "prtranscriptSrt",
        -  "prtranscriptVtt",
        -  "vttSrt",
        -  "srtText",
        -  "vttText",
        -  "prprojXml",
        -  "prprojDrp",
        -  "aafXml",
        -  "aafDrp",
        -  "drpXml",
        -  "prtranscriptDocx",
        -  "prtranscriptCsv",
        -  "capcutSrt",
        -  "jsonVtt",
        -  "jsonDocx",
        -  "jsonText",
        -  "sccCsv",
        -  "mccCsv",
        -  "stlCsv",
        -  "fcpxmlDocx",
        -  "fcpxmlCsv",
        -  "prtranscriptText",
        -  "sbvSrt",
        -  "srtDocx",
        -  "vttDocx",
        -  "assSrt",
        -  "jsonSrt",
        -  "srtCsv",
        -  "csvSrt",
        -  "srtFcpxml",
        -  "fcpxmlSrt",
        -  "srtScc",
        -  "sccSrt",
        -  "srtMcc",
        -  "mccSrt",
        -  "srtStl",
        -  "stlSrt"
        -]New value: +[
        +  "auto",
        +  "srtJson",
        +  "srtAvidTxt",
        +  "txtSrt",
        +  "edlCsv",
        +  "txtJson",
        +  "wordJson",
        +  "srtVtt",
        +  "prtranscriptSrt",
        +  "prtranscriptVtt",
        +  "vttSrt",
        +  "srtText",
        +  "vttText",
        +  "prprojXml",
        +  "prprojDrp",
        +  "aafXml",
        +  "aafDrp",
        +  "drpXml",
        +  "prprojCsv",
        +  "prprojEdl",
        +  "drpCsv",
        +  "drpEdl",
        +  "aafCsv",
        +  "aafEdl",
        +  "prtranscriptDocx",
        +  "prtranscriptCsv",
        +  "capcutSrt",
        +  "jsonVtt",
        +  "jsonDocx",
        +  "jsonText",
        +  "sccCsv",
        +  "mccCsv",
        +  "stlCsv",
        +  "fcpxmlDocx",
        +  "fcpxmlCsv",
        +  "prtranscriptText",
        +  "sbvSrt",
        +  "srtDocx",
        +  "vttDocx",
        +  "assSrt",
        +  "jsonSrt",
        +  "srtCsv",
        +  "csvSrt",
        +  "srtFcpxml",
        +  "fcpxmlSrt",
        +  "srtScc",
        +  "sccSrt",
        +  "srtMcc",
        +  "mccSrt",
        +  "srtStl",
        +  "stlSrt"
        +]
  11. 4 tool updates
    • First observedconvert_file
    • First observedinspect_file
    • First observedlist_converters
    • First observedtimecode_calculate

Related MCP Connectors

Related MCP Servers

  • F
    license
    A
    quality
    B
    maintenance
    Enables broad media and document format conversion (audio, video, images, Office, data, ebooks, PDF, subtitles) through an MCP server with smart routing, batch processing, and multiple conversion engines.
    14
    11 npm
    -
  • A
    license
    A
    quality
    D
    maintenance
    Enables file conversion between 690+ formats (image, video, audio, document, data, font, ebook, archive) using an MCP server, with no API key or signup required.
    2
    9 npm
    5
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources