funasr-zh-tw-mcp
Related Servers
Alternatives to funasr-zh-tw-mcp
No user-submitted related servers found.
Related Servers
- FlicenseNot gradedqualityDmaintenanceA powerful speech-to-text MCP server that supports multiple audio formats and recognition engines including remote APIs (Bailian, OpenAI Whisper, iFLYTEK), Google Speech Recognition, and CMU Sphinx.1-
- AlicenseBqualityDmaintenanceLocal-only transcription server for MCP agents, powered by CrispASR. Transcribes audio/video files without cloud uploads, supporting English and Chinese.101MIT
- AlicenseAqualityCmaintenanceLocal, private audio transcription MCP server enabling AI agents to transcribe audio files entirely on-device without uploading data.3MIT
- FlicenseNot gradedqualityDmaintenanceA high-performance speech recognition MCP server based on Faster Whisper, providing efficient audio transcription capabilities with support for multiple model sizes, batch processing, and various output formats.17-
- AlicenseNot gradedqualityBmaintenanceMCP server for offline speech-to-text and speaker diarization, enabling AI agents to transcribe audio locally without cloud APIs.131 PyPI3MIT
- AlicenseAqualityCmaintenanceMCP server for local speech-to-text using Whisper Large V3 (MLX), enabling audio transcription with text/timestamps/SRT output and LLM-based correction, all running offline on Apple Silicon.2MIT
TDQS
Scored across 2 tools
transcribe_audio performs the core transcription while preload_model handles model initialization; their purposes are completely distinct and cannot be confused. The descriptions clearly separate the main task from an optional optimization step.
Both tools follow the same verb_noun pattern: transcribe_audio and preload_model. The verb clearly indicates the action, and the noun indicates the target, making the naming predictable and consistent.
Two tools is appropriate for a narrow-purpose server: one primary transcription tool plus an optional model preloading optimization. Each tool earns its place without redundancy, and adding more tools would likely be unnecessary for this focused scope.
The server's domain is local audio transcription, and the tool set covers the full workflow: optional model preloading followed by transcription. There are no obvious gaps for the stated purpose, and the preload_model tool explicitly handles the cold-start concern.