Skip to main content
Glama

TranscriptionTools MCP Server

Servidor MCP de TranscriptionTools

insignia de herrería

Un servidor MCP que ofrece capacidades de procesamiento de transcripciones inteligentes, con formato natural, reparación contextual y resumen inteligente impulsado por Deep Thinking LLMs.

Herramientas MCP disponibles

Este servidor MCP expone cuatro potentes herramientas para el procesamiento de transcripciones:

  1. repair_text : analiza y repara errores de transcripción con una confianza superior al 90 %

  2. get_repair_log : recupera registros de análisis detallados de reparaciones anteriores

  3. format_transcript : transforma las transcripciones con marca de tiempo en texto con formato natural.

  4. summary_text - Genera resúmenes inteligentes utilizando la metodología cognitiva ACE

Instalación

Instalación mediante herrería

Para instalar Transcription Tools para Claude Desktop automáticamente a través de Smithery :

npx -y @smithery/cli install @MushroomFleet/transcriptiontools-mcp --client claude
  1. Clonar este repositorio:

git clone https://github.com/mushroomfleet/TranscriptionTools-MCP cd TranscriptionTools-MCP
  1. Instalar dependencias:

npm install
  1. Construir el servidor:

npm run build
  1. Configure el servidor MCP en su archivo de configuración de MCP:

{ "mcpServers": { "transcription-tools": { "command": "node", "args": ["/path/to/TranscriptionTools-MCP/build/index.js"], "disabled": false, "autoApprove": [] } } }

Uso de las herramientas MCP

Reparación de errores de transcripción

<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>

Formato de transcripciones con marca de tiempo

<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>

Generando resúmenes

<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>

Recuperación de registros de reparación

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

Tecnologías centrales

Formato natural

  • Elimina las marcas de tiempo y conserva los patrones de voz.

  • Aplica un espaciado inteligente según la duración de la pausa.

  • Respeta la gramática natural y el flujo del lenguaje.

  • Mantiene el contenido transcrito exacto

Reparación contextual

  • Identifica y corrige posibles errores de transcripción.

  • Utiliza contexto semántico para correcciones de alta confianza

  • Mantiene registros detallados de todos los cambios.

  • Umbral de confianza del 90% para correcciones

  • No se requiere audio original

Resumen inteligente

  • Crea resúmenes concisos de las transcripciones procesadas

  • Admite múltiples tipos de restricciones:

    • Basado en el tiempo (duración del discurso)

    • Recuento de caracteres

    • Recuento de palabras

  • Conserva la información clave y el contexto

  • Mantiene el ritmo natural del habla.

Estructura del proyecto

/ ├── .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

Configuración

Puede personalizar el comportamiento del servidor modificando directamente el código fuente. Los parámetros de configuración clave se encuentran en los archivos de implementación de la herramienta correspondiente:

// In src/tools/formatting.ts const paragraph_gap = 8; // seconds const line_gap = 4; // seconds // In src/tools/repair.ts const confidence_threshold = 90; // percentage // In src/tools/summary.ts const default_speaking_pace = 150; // words per minute

Licencia

Instituto Tecnológico de Massachusetts (MIT)

Deploy Server
A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

Proporciona capacidades de procesamiento de transcripciones inteligentes para Claude, con formato natural, reparación contextual y resumen inteligente impulsado por Deep Thinking LLMs.

  1. Herramientas MCP disponibles
    1. Instalación
      1. Instalación mediante herrería
    2. Uso de las herramientas MCP
      1. Reparación de errores de transcripción
      2. Formato de transcripciones con marca de tiempo
      3. Generando resúmenes
      4. Recuperación de registros de reparación
    3. Tecnologías centrales
      1. Formato natural
      2. Reparación contextual
      3. Resumen inteligente
    4. Estructura del proyecto
      1. Configuración
        1. Licencia

          Related MCP Servers

          • -
            security
            A
            license
            -
            quality
            Provides semantic memory and persistent storage for Claude, leveraging ChromaDB and sentence transformers for enhanced search and retrieval capabilities.
            Last updated -
            3
            705
            Apache 2.0
            • Linux
          • -
            security
            A
            license
            -
            quality
            AI-powered assistant that connects Claude to video encoding workflows, translating cryptic errors into plain English and providing actionable solutions for troubleshooting encoding jobs.
            Last updated -
            1
            MIT License
          • -
            security
            A
            license
            -
            quality
            Integrates with Claude to enable intelligent querying of documentation data, transforming crawled technical documentation into an actionable resource that LLMs can directly interact with.
            Last updated -
            1,906
            Apache 2.0
            • Apple
            • Linux
          • -
            security
            F
            license
            -
            quality
            Enables Claude AI to perform comprehensive file operations including reading, writing, notes management, PDF processing, and image handling with thread-safe operations. Provides a complete file management system with enhanced features like document processing and automatic directory creation.
            Last updated -

          View all related MCP servers

          MCP directory API

          We provide all the information about MCP servers via our MCP API.

          curl -X GET 'https://glama.ai/api/mcp/v1/servers/MushroomFleet/TranscriptionTools-MCP'

          If you have feedback or need assistance with the MCP directory API, please join our Discord server