MIAO HU
commited on
Commit
·
4980f4b
1
Parent(s):
5dcd53e
feat. update readme
Browse files
app.py
CHANGED
|
@@ -143,6 +143,29 @@ with gr.Blocks(title="Parakeet ASR MCP Server") as demo:
|
|
| 143 |
A Model Context Protocol (MCP) server built with Gradio interfaces with a speech-to-text API, serving the model [Parakeet TDT 0.6B V2](https://huggingface.co/nvidia/parakeet-tdt-0.6b-v2) open-sourced by NVIDIA and hosted on Novita AI (https://novita.ai/templates-library/105929).
|
| 144 |
|
| 145 |
This server is free to use and provides high-quality English transcription capabilities, supporting both plain text and SRT subtitle formats.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 146 |
""")
|
| 147 |
|
| 148 |
with gr.Tab("Transcribe to text"):
|
|
|
|
| 143 |
A Model Context Protocol (MCP) server built with Gradio interfaces with a speech-to-text API, serving the model [Parakeet TDT 0.6B V2](https://huggingface.co/nvidia/parakeet-tdt-0.6b-v2) open-sourced by NVIDIA and hosted on Novita AI (https://novita.ai/templates-library/105929).
|
| 144 |
|
| 145 |
This server is free to use and provides high-quality English transcription capabilities, supporting both plain text and SRT subtitle formats.
|
| 146 |
+
|
| 147 |
+
## MCP Server URL
|
| 148 |
+
```
|
| 149 |
+
https://viktor-hu-parakeet-asr-mcp-server.hf.space/gradio_api/mcp/sse
|
| 150 |
+
```
|
| 151 |
+
|
| 152 |
+
## Available MCP Tools
|
| 153 |
+
- `transcribe_to_text`: Transcribe the audio file to plain text.
|
| 154 |
+
- `transcribe_to_srt`: Transcribe the audio file to SRT subtitle format.
|
| 155 |
+
|
| 156 |
+
## Integration
|
| 157 |
+
|
| 158 |
+
To add this MCP to clients that support SSE (e.g. Cursor, Windsurf, Cline), simply add the following configuration to your MCP config:
|
| 159 |
+
|
| 160 |
+
```
|
| 161 |
+
{
|
| 162 |
+
"mcpServers": {
|
| 163 |
+
"parakeet-asr": {
|
| 164 |
+
"url": "https://viktor-hu-parakeet-asr-mcp-server.hf.space/gradio_api/mcp/sse"
|
| 165 |
+
}
|
| 166 |
+
}
|
| 167 |
+
}
|
| 168 |
+
```
|
| 169 |
""")
|
| 170 |
|
| 171 |
with gr.Tab("Transcribe to text"):
|