Skip to content
VS Code

shipi18n for VS Code

io.github.shipi18n/shipi18n

Translation QA for locale files: keyless validators, semantic review and BYO-key translation

client:VS Code transport:stdio runtime:npm

Install shipi18n in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openai-api-key",
      "description": "OPENAI_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "shipi18n": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@shipi18n/mcp"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
        "OPENAI_API_KEY": "${input:openai-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

shipi18n in other clients