TranscriptionTools MCP Server
An MCP server providing intelligent transcript processing capabilities, featuring natural formatting, contextual repair, and smart summarization powered by Deep Thinking LLMs.
Overview
TranscriptionTools MCP is an intelligent transcript processing server that utilizes Deep Thinking LLMs to provide natural formatting, contextual repair, and smart summarization of transcripts.
To use TranscriptionTools MCP, install it via Smithery or clone the repository from GitHub, install dependencies, build the server, and configure it in your MCP settings. You can then utilize various tools for repairing text, formatting transcripts, generating summaries, and retrieving repair logs.
- Repair Text: Analyzes and repairs transcription errors with over 90% confidence. - Format Transcript: Converts timestamped transcripts into naturally formatted text. - Summary Text: Generates concise summaries using ACE cognitive methodology. - Get Repair Log: Retrieves detailed logs of previous repairs.
- Correcting transcription errors in meeting notes.
- Formatting lecture transcripts for better readability.
- Summarizing long interviews for quick insights.
- Analyzing and logging transcription corrections for quality assurance.
Add to your AI client
Use these steps to connect TranscriptionTools MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"transcriptiontools-mcp-mushroomfleet": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-transcriptiontools-mcp-mushroomfleet"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"transcriptiontools-mcp-mushroomfleet": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-transcriptiontools-mcp-mushroomfleet"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"transcriptiontools-mcp-mushroomfleet": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-transcriptiontools-mcp-mushroomfleet"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"transcriptiontools-mcp-mushroomfleet": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-transcriptiontools-mcp-mushroomfleet"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"transcriptiontools-mcp-mushroomfleet": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-transcriptiontools-mcp-mushroomfleet"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"transcriptiontools-mcp-mushroomfleet": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-transcriptiontools-mcp-mushroomfleet"
]
}
}
}FAQ
Can TranscriptionTools MCP handle all types of transcripts?
Yes! It is designed to process various types of transcripts including meetings, lectures, and interviews.
Is there a cost associated with using TranscriptionTools MCP?
No! TranscriptionTools MCP is free to use under the MIT license.
How accurate is the repair feature?
The repair feature has a confidence threshold of over 90%, ensuring high accuracy in corrections.