Skip to content
VS Code

Lucius MCP for VS Code

io.github.ivanostanin/lucius-mcp

MCP server for managing Allure TestOps tests, launches, plans, defects, and metadata.

client:VS Code transport:stdio runtime:pypi

Install Lucius MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "allure-endpoint",
      "description": "ALLURE_ENDPOINT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "allure-project-id",
      "description": "ALLURE_PROJECT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "allure-api-token",
      "description": "ALLURE_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "lucius-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "lucius-mcp"
      ],
      "env": {
        "ALLURE_ENDPOINT": "${input:allure-endpoint}",
        "ALLURE_PROJECT_ID": "${input:allure-project-id}",
        "ALLURE_API_TOKEN": "${input:allure-api-token}"
      }
    }
  }
}

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

Lucius MCP in other clients