Skip to content
VS Code

transcribe mcp for VS Code

io.github.soboljem/transcribe-mcp

Transcribe audio/video and find dead air. Pay-per-call in USDC over x402 — no account, no key.

client:VS Code transport:stdio runtime:npm

Install transcribe mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "transcribe-mcp-wallet-key",
      "description": "TRANSCRIBE_MCP_WALLET_KEY",
      "password": true
    }
  ],
  "servers": {
    "transcribe-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "transcribe-mcp"
      ],
      "env": {
        "TRANSCRIBE_MCP_WALLET_KEY": "${input:transcribe-mcp-wallet-key}"
      }
    }
  }
}

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

transcribe mcp in other clients