Labsco
MushroomFleet logo

TranscriptionTools

โ˜… 19

from MushroomFleet

An MCP server for intelligent transcript processing, including formatting, repair, and summarization.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeAdvanced setup

TranscriptionTools MCP Server

smithery badge

An MCP server providing intelligent transcript processing capabilities, featuring natural formatting, contextual repair, and smart summarization powered by Deep Thinking LLMs.

TranscriptionTools Server MCP server

Available MCP Tools

This MCP server exposes four powerful tools for transcript processing:

  1. repair_text - Analyzes and repairs transcription errors with greater than 90% confidence
  2. get_repair_log - Retrieves detailed analysis logs from previous repairs
  3. format_transcript - Transforms timestamped transcripts into naturally formatted text
  4. summary_text - Generates intelligent summaries using ACE cognitive methodology

Using the MCP Tools

Repairing Transcription Errors

<use_mcp_tool>
<server_name>transcription-tools</server_name>
<tool_name>repair_text</tool_name>
<arguments>
{
  "input_text": "We recieve about ten thousand dollars which is defiantly not enough.",
  "is_file_path": false
}
</arguments>
</use_mcp_tool>

Formatting Timestamped Transcripts

<use_mcp_tool>
<server_name>transcription-tools</server_name>
<tool_name>format_transcript</tool_name>
<arguments>
{
  "input_text": "/path/to/timestamped-transcript.txt",
  "is_file_path": true,
  "paragraph_gap": 8,
  "line_gap": 4
}
</arguments>
</use_mcp_tool>

Generating Summaries

<use_mcp_tool>
<server_name>transcription-tools</server_name>
<tool_name>summary_text</tool_name>
<arguments>
{
  "input_text": "Long text to summarize...",
  "is_file_path": false,
  "constraint_type": "words",
  "constraint_value": 100
}
</arguments>
</use_mcp_tool>

Retrieving Repair Logs

<use_mcp_tool>
<server_name>transcription-tools</server_name>
<tool_name>get_repair_log</tool_name>
<arguments>
{
  "session_id": "20241206143022"
}
</arguments>
</use_mcp_tool>

Core Technologies

Natural Formatting

  • Removes timestamps while preserving speech patterns
  • Applies intelligent spacing based on pause duration
  • Respects natural grammar and language flow
  • Maintains exact transcribed content

Contextual Repair

  • Identifies and corrects likely transcription errors
  • Uses semantic context for high-confidence corrections
  • Maintains detailed logs of all changes
  • 90% confidence threshold for corrections
  • No original audio required

Smart Summarization

  • Creates concise summaries of processed transcripts
  • Supports multiple constraint types:
    • Time-based (speaking duration)
    • Character count
    • Word count
  • Preserves key information and context
  • Maintains natural speaking rhythm

Project Structure

/
โ”œโ”€โ”€ .gitignore         # Git ignore file
โ”œโ”€โ”€ LICENSE            # MIT license file
โ”œโ”€โ”€ README.md          # This documentation
โ”œโ”€โ”€ package.json       # Package dependencies and scripts
โ”œโ”€โ”€ tsconfig.json      # TypeScript configuration
โ”œโ”€โ”€ build/             # Compiled JavaScript files (generated after build)
โ”‚   โ”œโ”€โ”€ tools/         # Compiled tool implementations
โ”‚   โ””โ”€โ”€ utils/         # Compiled utility functions
โ””โ”€โ”€ src/               # Source TypeScript files
    โ”œโ”€โ”€ index.ts       # MCP server entry point
    โ”œโ”€โ”€ tools/         # Tool implementations
    โ”‚   โ”œโ”€โ”€ formatting.ts
    โ”‚   โ”œโ”€โ”€ repair.ts
    โ”‚   โ””โ”€โ”€ summary.ts
    โ””โ”€โ”€ utils/         # Utility functions
        โ”œโ”€โ”€ file-handler.ts
        โ””โ”€โ”€ logger.ts

See Also