MCP Catalogs
Home

TranscriptionTools-MCP

by MushroomFleet·19·Score 43

MCP server for transcript processing with repair, formatting, and summarization tools powered by deep-thinking LLMs.

ai-llmproductivityother
10
Forks
1
Open issues
1 mo ago
Last commit
2d ago
Indexed

Overview

TranscriptionTools-MCP is a specialized MCP server that provides intelligent transcript processing capabilities. It offers four main tools: repairing transcription errors with >90% confidence, retrieving detailed repair logs, transforming timestamped transcripts into naturally formatted text, and generating intelligent summaries using ACE cognitive methodology. The server is built with TypeScript and provides a well-structured codebase with clear separation of concerns between tools and utilities.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Improving the accuracy of automated meeting transcripts
you:Converting timestamped audio transcripts into readable documents
you:Creating concise summaries of long interview recordings
you:What transcription accuracy can I expect from the repair tool?
you:Can the server process audio files directly?

When to choose this

Choose this server for transcript processing tasks where you need to clean up automatic speech recognition output, format meeting transcripts, or create summaries of audio content without needing the original media files.

When NOT to choose this

Don't choose this server if you need to process video files directly or if you require human-level transcription accuracy, as it works on text transcripts rather than audio processing.

Tools this server exposes

4 tools extracted from the README
  • repair_text

    Analyzes and repairs transcription errors with greater than 90% confidence

  • get_repair_log

    Retrieves detailed analysis logs from previous repairs

  • format_transcript

    Transforms timestamped transcripts into naturally formatted text

  • summary_text

    Generates intelligent summaries using ACE cognitive methodology

Comparable tools

whisper-mcpspeech-recognition-mcpsummarize-mcpdeepgram-mcp

Installation

Installing via Smithery

To install Transcription Tools for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @MushroomFleet/transcriptiontools-mcp --client claude

Manual Installation

  1. Clone this repository:
git clone https://github.com/mushroomfleet/TranscriptionTools-MCP
cd TranscriptionTools-MCP
  1. Install dependencies:
npm install
  1. Build the server:
npm run build
  1. Configure the MCP server in your Claude Desktop settings file:
{
  "mcpServers": {
    "transcription-tools": {
      "command": "node",
      "args": ["/path/to/TranscriptionTools-MCP/build/index.js"],
      "disabled": false,
      "autoApprove": []
    }
  }
}

FAQ

What transcription accuracy can I expect from the repair tool?
The repair tool claims to correct transcription errors with greater than 90% confidence using semantic context analysis.
Can the server process audio files directly?
No, the server works with text transcripts, not audio files. You'll need to convert audio to text first.

Compare TranscriptionTools-MCP with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.