npm @speechweave/mcpstdioMITupdated 19d ago
Official Model Context Protocol server for SpeechWeave. Use to transcribe local files and URLs from Cursor, Claude Desktop, Claude Code, Windsurf, and other MCP clients.
O que dá para fazer com SpeechWeave?
@speechweave/mcp
Official Model Context Protocol server for SpeechWeave. Use to transcribe local files and URLs from Cursor, Claude Desktop, Claude Code, Windsurf, and other MCP clients.
SpeechWeave handles short clips and long-form audio without client-side chunking. This MCP server exposes both wait-first tools (get a transcript in one turn) and async create + poll tools (start a job, then check status).
Docs: speechweave.com/docs/mcp · API reference
Install / run
Requires Node.js 18+ and a SpeechWeave API key (sk_live_…).
export SPEECHWEAVE_API_KEY="sk_live_..."
npx -y @speechweave/mcp
Cursor / Claude Desktop
Add to your MCP config (e.g. .cursor/mcp.json, claude_desktop_config.json):
{
"mcpServers": {
"speechweave": {
"command": "npx",
"args": ["-y", "@speechweave/mcp"],
"env": {
"SPEECHWEAVE_API_KEY": "sk_live_..."
}
}
}
}
Tools
| Tool | Mode | When to use |
|---|---|---|
transcribe_file |
Wait-first | Absolute local path; wait until transcript is ready |
transcribe_url |
Wait-first | Public HTTPS URL; wait until transcript is ready |
start_job_file |
Async | Absolute local path; return job_id immediately |
start_job_url |
Async | Public HTTPS URL; return job_id immediately |
get_job_status |
Poll | Fetch status / transcript for a job id |
cancel_job |
Control | Cancel a queued or processing job |
get_limits |
Info | Upload size ceilings for your API key |
fetch_doc |
Info | Public docs by slug (bundled pages + live OpenAPI) |
Never pass raw audio bytes over MCP. Use absolute file paths (local clients) or HTTPS URLs.
Configuration & Arguments
All transcription and job-start tools accept the following optional arguments:
model: Choosecore(default) ormax.service_mode: Choosestandard(default) ordeferredfor the background queue.synchronousis accepted as an alias forstandard.language: Optional ISO language code to force language detection.task: Choosetranscribe(default) ortranslateto produce an English translation instead;languageis ignored when translating.prompt: Optional custom vocabulary hint (proper nouns, acronyms, product names) for the first ~30s of audio.
Formatted transcripts: transcribe_file, transcribe_url, and get_job_status also accept an optional response_format (text, srt, vtt, or verbose_json) to return the transcript in that shape instead of the default plain text.
Timeout behavior: Wait-first tools accept an optional timeout_ms. If the transcription exceeds the timeout, the tool gracefully returns a job_id and instructs the client to switch to get_job_status polling.
Account limits and docs
get_limits: ReturnsGET /v1/limitsfor the calling key, with MB equivalents. Use before uploading large local files.fetch_doc: Returns public documentation. Sluglistshows the catalog. Bundled pages includequickstart,mcp,models,billing, anddata_retention. Slugapifetches a live OpenAPI overview;api/<operation_slug>returns one endpoint (e.g.api/get_v1_limits).
Example Prompts
After adding the server and restarting your client, try asking your AI assistant:
Short clip (wait-first)
"Use SpeechWeave to transcribe
/Users/me/recordings/standup.mp3and summarize action items."
The assistant will call transcribe_file with the absolute path and summarize the returned transcript.
Long podcast (async + poll)
"Start a SpeechWeave job for
https://cdn.example.com/three_hour_podcast.mp3, then check back until it completes."
The assistant will call start_job_url, then periodically call get_job_status until the status reaches completed.
Translate to subtitles (wait-first)
"Translate
/Users/me/recordings/spanish_interview.mp3into English SRT subtitles using SpeechWeave."
The assistant will call transcribe_file with task: "translate" and response_format: "srt".
Instalação
Adicione SpeechWeave ao seu cliente. Escolha o que você usa.
claude mcp add mcp -- npx -y @speechweave/mcpcodex mcp add mcp -- npx -y @speechweave/mcpamp mcp add mcp -- npx -y @speechweave/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@speechweave/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@speechweave/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp","command":"npx","args":["-y","@speechweave/mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@speechweave/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@speechweave/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@speechweave/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@speechweave/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@speechweave/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @speechweave/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
8 ferramentas
SpeechWeave expõe 8 ferramentas a um agente conectado.
- transcribe_file
- Wait-first
- transcribe_url
- Wait-first
- start_job_file
- Async
- start_job_url
- Async
- get_job_status
- Poll
- cancel_job
- Control
- get_limits
- Info
- fetch_doc
- Info
Pontuação
78 / 100
Boa
- Documentação25/25
- Manutenção19/25
- Confiança16/20
- Capacidade6/15
- Instalação12/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 11 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 8 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
Histórico de versões
| Versões | Publicada |
|---|---|
| 1.9.0Mais recente | 21 de ago. de 2026 |