mcp for VS Code
com.translatize/mcp
Read, search, edit and branch Translatize translation labels and fill missing translations.
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "translatize-api-token",
"description": "TRANSLATIZE_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "translatize-api-url",
"description": "TRANSLATIZE_API_URL",
"password": true
},
{
"type": "promptString",
"id": "translatize-app-url",
"description": "TRANSLATIZE_APP_URL",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@translatize/mcp"
],
"env": {
"TRANSLATIZE_API_TOKEN": "${input:translatize-api-token}",
"TRANSLATIZE_API_URL": "${input:translatize-api-url}",
"TRANSLATIZE_APP_URL": "${input:translatize-app-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs