nativ for VS Code
io.github.nativ-technologies/nativ
AI-powered localization — translate, manage translation memory, and access style guides.
client:VS Code
transport:stdio
runtime:pypi
Install nativ in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "nativ-api-key",
"description": "NATIV_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "nativ-api-url",
"description": "NATIV_API_URL",
"password": true
}
],
"servers": {
"nativ": {
"type": "stdio",
"command": "uvx",
"args": [
"nativ-mcp"
],
"env": {
"NATIV_API_KEY": "${input:nativ-api-key}",
"NATIV_API_URL": "${input:nativ-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs