Skip to content
VS Code

Tenki Sandbox MCP for VS Code

io.github.luxorlabs/tenki-mcp

Disposable microVM sandboxes for AI agents: run code, read/write files, git, preview URLs.

client:VS Code transport:stdio runtime:npm

Install Tenki Sandbox MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "tenki-api-key",
      "description": "TENKI_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tenki-api-endpoint",
      "description": "TENKI_API_ENDPOINT",
      "password": true
    }
  ],
  "servers": {
    "tenki-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@tenkicloud/mcp"
      ],
      "env": {
        "TENKI_API_KEY": "${input:tenki-api-key}",
        "TENKI_API_ENDPOINT": "${input:tenki-api-endpoint}"
      }
    }
  }
}

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

Tenki Sandbox MCP in other clients