Skip to content
VS Code

gandr mcp for VS Code

io.github.gandr-ai/gandr-mcp

Text to speech for MCP clients. 23 languages, six voices, every render watermarked.

client:VS Code transport:stdio runtime:pypi

Install gandr mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "gandr-api-key",
      "description": "GANDR_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "gandr-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "gandr-mcp"
      ],
      "env": {
        "GANDR_API_KEY": "${input:gandr-api-key}"
      }
    }
  }
}

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

gandr mcp in other clients