npm vocce-transcribe-mcpstdioupdated 1mo ago
Hosted audio/video transcription for AI agents and automations. No API key. No local model. Upload a file, get back text + SRT + VTT + timestamped segments โ powered by Whisper large-v3 on vocce's GPU.
What can you do with vocce transcribe?
vocce โ agent integrations
Hosted audio/video transcription for AI agents and automations. No API key. No local model. Upload a file, get back text + SRT + VTT + timestamped segments โ powered by Whisper large-v3 on vocce's GPU.
โ Product: https://vocce.io ยท API docs: https://vocce.io/api ยท OpenAPI: https://vocce.io/openapi.json
Three ways to use it
1. MCP server โ for Claude, Cursor, Windsurf, โฆ
{ "mcpServers": { "vocce": { "command": "npx", "args": ["-y", "vocce-transcribe-mcp"] } } }
Details โ transcribe-mcp-server/
2. CLI โ Python, stdlib only
python3 transcribe-cli/transcribe.py meeting.mp3 --format srt
Details โ transcribe-cli/
3. Agent Skill โ drop-in for Claude
See โ agent-transcription-skill/
Also in here
- GitHub Action โ transcribe in CI โ
github-action/ - n8n community node โ
n8n-nodes-vocceโn8n-nodes-vocce/ - Function calling (OpenAI / Anthropic) + ChatGPT Action โ
integrations/ - Directory submission kits (MCP + Skill) โ
distribution/ - MCP registry manifest โ
server.json
How it works
Every package is a thin client: it uploads your file to vocce's hosted backend, polls until the job is done, and returns the result. The transcription runs on vocce's GPU โ nothing to install, no model to download. The backend is the product; these clients are open source (MIT).
License
MIT
Install
Add vocce transcribe to your client. Pick the one you use.
claude mcp add vocce-transcribe-mcp -- npx -y vocce-transcribe-mcpcodex mcp add vocce-transcribe-mcp -- npx -y vocce-transcribe-mcpamp mcp add vocce-transcribe-mcp -- npx -y vocce-transcribe-mcp{
"mcpServers": {
"vocce-transcribe-mcp": {
"command": "npx",
"args": [
"-y",
"vocce-transcribe-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"vocce-transcribe-mcp": {
"command": "npx",
"args": [
"-y",
"vocce-transcribe-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"vocce-transcribe-mcp","command":"npx","args":["-y","vocce-transcribe-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"vocce-transcribe-mcp": {
"command": "npx",
"args": [
"-y",
"vocce-transcribe-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"vocce-transcribe-mcp": {
"command": "npx",
"args": [
"-y",
"vocce-transcribe-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"vocce-transcribe-mcp": {
"command": "npx",
"args": [
"-y",
"vocce-transcribe-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"vocce-transcribe-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"vocce-transcribe-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"vocce-transcribe-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"vocce-transcribe-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y vocce-transcribe-mcpRun `goose configure`, choose **Add Extension โ Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance16/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 45 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint โ no local install
Version history
| Versions | Published |
|---|---|
| 1.1.0Latest | Jul 17, 2026 |
| 1.0.0 | Jul 8, 2026 |