Skip to content
VS Code

vocce transcribe for VS Code

io.github.cmoonagent/vocce-agent

Agent media tools: transcribe, summarize, notes, flashcards, doc Q&A, PDF compress. No API key.

client:VS Code transport:stdio runtime:npm

Install vocce transcribe in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vocce-api-base",
      "description": "VOCCE_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "vocce-agent": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "vocce-transcribe-mcp"
      ],
      "env": {
        "VOCCE_API_BASE": "${input:vocce-api-base}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

vocce transcribe in other clients