Skip to content
VS Code

Pronunciation & Voice Coach for VS Code

io.github.juhongpark/pronunciation

Local MCP voice coach with English pronunciation, grammar, and fluency feedback.

client:VS Code transport:stdio runtime:pypi

Install Pronunciation & Voice Coach in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-pronunciation-model",
      "description": "MCP_PRONUNCIATION_MODEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "hf-hub-cache",
      "description": "HF_HUB_CACHE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-pronunciation-preload",
      "description": "MCP_PRONUNCIATION_PRELOAD",
      "password": true
    },
    {
      "type": "promptString",
      "id": "mcp-pronunciation-audio-retention",
      "description": "MCP_PRONUNCIATION_AUDIO_RETENTION",
      "password": true
    },
    {
      "type": "promptString",
      "id": "torch-home",
      "description": "TORCH_HOME",
      "password": true
    }
  ],
  "servers": {
    "pronunciation": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "mcp-server-pronunciation"
      ],
      "env": {
        "MCP_PRONUNCIATION_MODEL": "${input:mcp-pronunciation-model}",
        "HF_HUB_CACHE": "${input:hf-hub-cache}",
        "MCP_PRONUNCIATION_PRELOAD": "${input:mcp-pronunciation-preload}",
        "MCP_PRONUNCIATION_AUDIO_RETENTION": "${input:mcp-pronunciation-audio-retention}",
        "TORCH_HOME": "${input:torch-home}"
      }
    }
  }
}

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

Pronunciation & Voice Coach in other clients