Skip to content
VS Code

allure testops mcp for VS Code

io.github.mshegolev/allure-testops-mcp

Allure TestOps MCP — projects, launches, test cases, test results via REST API.

client:VS Code transport:stdio runtime:pypi

Install allure testops mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "allure-url",
      "description": "ALLURE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "allure-token",
      "description": "ALLURE_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "allure-ssl-verify",
      "description": "ALLURE_SSL_VERIFY",
      "password": true
    }
  ],
  "servers": {
    "allure-testops-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "allure-testops-mcp"
      ],
      "env": {
        "ALLURE_URL": "${input:allure-url}",
        "ALLURE_TOKEN": "${input:allure-token}",
        "ALLURE_SSL_VERIFY": "${input:allure-ssl-verify}"
      }
    }
  }
}

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

allure testops mcp in other clients