Skip to content
VS Code

reviewable artifacts for VS Code

com.bereviewable/reviewable-artifacts

Reviewable workspace discovery and private HTML review creation via stdio MCP.

client:VS Code transport:stdio runtime:npm

Install reviewable artifacts in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "reviewable-mcp-base-url",
      "description": "REVIEWABLE_MCP_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "reviewable-mcp-workspace-key",
      "description": "REVIEWABLE_MCP_WORKSPACE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "reviewable-mcp-reviews",
      "description": "REVIEWABLE_MCP_REVIEWS",
      "password": true
    }
  ],
  "servers": {
    "reviewable-artifacts": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "reviewable-artifacts-mcp"
      ],
      "env": {
        "REVIEWABLE_MCP_BASE_URL": "${input:reviewable-mcp-base-url}",
        "REVIEWABLE_MCP_WORKSPACE_KEY": "${input:reviewable-mcp-workspace-key}",
        "REVIEWABLE_MCP_REVIEWS": "${input:reviewable-mcp-reviews}"
      }
    }
  }
}

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

reviewable artifacts in other clients