Paxa Labs for VS Code
com.paxalabs/mcp
Thai, English, Mandarin speech AI: TTS with playback, transcription, translation, OCR, extraction
client:VS Code
transport:stdio
runtime:npm
Install Paxa Labs in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "paxa-api-key",
"description": "PAXA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "paxa-output-dir",
"description": "PAXA_OUTPUT_DIR",
"password": true
},
{
"type": "promptString",
"id": "paxa-default-voice",
"description": "PAXA_DEFAULT_VOICE",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@paxalabs/mcp"
],
"env": {
"PAXA_API_KEY": "${input:paxa-api-key}",
"PAXA_OUTPUT_DIR": "${input:paxa-output-dir}",
"PAXA_DEFAULT_VOICE": "${input:paxa-default-voice}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs