Skip to content
VS Code

mcp for VS Code

com.sonenta/mcp

MCP server for Sonenta translation management: keys, translations, a11y, and source-health tools.

client:VS Code transport:stdio runtime:npm

Install mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "sonenta-api-key",
      "description": "SONENTA_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sonenta-api-base",
      "description": "SONENTA_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sonenta-projects",
      "description": "SONENTA_PROJECTS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sonenta-agent-name",
      "description": "SONENTA_AGENT_NAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sonenta-agent-type",
      "description": "SONENTA_AGENT_TYPE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "sonenta-agent-version",
      "description": "SONENTA_AGENT_VERSION",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@sonenta/mcp"
      ],
      "env": {
        "SONENTA_API_KEY": "${input:sonenta-api-key}",
        "SONENTA_API_BASE": "${input:sonenta-api-base}",
        "SONENTA_PROJECTS": "${input:sonenta-projects}",
        "SONENTA_AGENT_NAME": "${input:sonenta-agent-name}",
        "SONENTA_AGENT_TYPE": "${input:sonenta-agent-type}",
        "SONENTA_AGENT_VERSION": "${input:sonenta-agent-version}"
      }
    }
  }
}

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

mcp in other clients