Skip to content
VS Code

ui-ticket-mcp for VS Code

io.github.0ics-srls/ui-ticket-mcp

Human-to-AI code review bridge. Review UI in the browser, AI agents fix code via MCP.

client:VS Code transport:stdio runtime:pypi

Install ui-ticket-mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "project-root",
      "description": "PROJECT_ROOT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "review-port",
      "description": "REVIEW_PORT",
      "password": true
    }
  ],
  "servers": {
    "ui-ticket-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "ui-ticket-mcp"
      ],
      "env": {
        "PROJECT_ROOT": "${input:project-root}",
        "REVIEW_PORT": "${input:review-port}"
      }
    }
  }
}

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

ui-ticket-mcp in other clients