TranscriptionTools-MCP
by MushroomFleet·★ 19·Score 43
MCP server for transcript processing with repair, formatting, and summarization tools powered by deep-thinking LLMs.
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:
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 READMErepair_textAnalyzes and repairs transcription errors with greater than 90% confidence
get_repair_logRetrieves detailed analysis logs from previous repairs
format_transcriptTransforms timestamped transcripts into naturally formatted text
summary_textGenerates intelligent summaries using ACE cognitive methodology
Comparable tools
Installation
Installing via Smithery
To install Transcription Tools for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @MushroomFleet/transcriptiontools-mcp --client claudeManual Installation
- Clone this repository:
git clone https://github.com/mushroomfleet/TranscriptionTools-MCP
cd TranscriptionTools-MCP- Install dependencies:
npm install- Build the server:
npm run build- 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
Last updated · Auto-generated from public README + GitHub signals.