Skip to main content
Glama
MushroomFleet

TranscriptionTools MCP Server

TranscriptionTools MCP 서버

Deep Thinking LLM을 기반으로 자연스러운 서식 지정, 문맥적 수정, 스마트 요약 기능을 갖춘 지능형 녹취록 처리 기능을 제공하는 MCP 서버입니다.

사용 가능한 MCP 도구

이 MCP 서버는 녹취록 처리를 위한 4가지 강력한 도구를 제공합니다:

  1. repair_text - 90% 이상의 신뢰도로 녹취 오류를 분석하고 수정합니다.

  2. get_repair_log - 이전 수정 작업의 상세 분석 로그를 검색합니다.

  3. format_transcript - 타임스탬프가 포함된 녹취록을 자연스러운 텍스트 형식으로 변환합니다.

  4. summary_text - ACE 인지 방법론을 사용하여 지능형 요약을 생성합니다.

Related MCP server: Encoding DevOps MCP Server

설치

Smithery를 통한 설치

Smithery를 통해 Claude Desktop용 Transcription Tools를 자동으로 설치하려면 다음을 수행하세요:

npx -y @smithery/cli install @MushroomFleet/transcriptiontools-mcp --client claude
  1. 이 저장소를 복제합니다:

git clone https://github.com/mushroomfleet/TranscriptionTools-MCP
cd TranscriptionTools-MCP
  1. 의존성을 설치합니다:

npm install
  1. 서버를 빌드합니다:

npm run build
  1. MCP 설정 파일에서 MCP 서버를 구성합니다:

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

MCP 도구 사용 방법

녹취 오류 수정

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

타임스탬프가 포함된 녹취록 서식 지정

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

요약 생성

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

수정 로그 검색

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

핵심 기술

자연스러운 서식 지정

  • 말하기 패턴을 유지하면서 타임스탬프를 제거합니다.

  • 일시 정지 시간을 기반으로 지능적인 간격을 적용합니다.

  • 자연스러운 문법과 언어 흐름을 존중합니다.

  • 정확한 녹취 내용을 유지합니다.

문맥적 수정

  • 발생 가능한 녹취 오류를 식별하고 수정합니다.

  • 높은 신뢰도의 수정을 위해 의미론적 문맥을 사용합니다.

  • 모든 변경 사항에 대한 상세 로그를 유지합니다.

  • 90% 신뢰도 임계값을 적용하여 수정합니다.

  • 원본 오디오가 필요하지 않습니다.

스마트 요약

  • 처리된 녹취록의 간결한 요약을 생성합니다.

  • 다양한 제약 조건 유형을 지원합니다:

    • 시간 기반 (말하기 지속 시간)

    • 글자 수

    • 단어 수

  • 핵심 정보와 문맥을 보존합니다.

  • 자연스러운 말하기 리듬을 유지합니다.

프로젝트 구조

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

구성

소스 코드를 직접 수정하여 서버 동작을 사용자 정의할 수 있습니다. 주요 구성 매개변수는 각 도구 구현 파일에서 찾을 수 있습니다:

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

라이선스

MIT

참고

Install Server
A
license - permissive license
B
quality
C
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

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