Allure MCP Server

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

Remote serverstreamable-httpPython

What is the Allure MCP server?

If you already use Allure, the allure mcp server is the piece that lets your assistant work with it directly. Allure TestOps MCP — projects, launches, test cases, test results via REST API.

What the server does

20 tools — 13 read-only (always on) and 7 write tools (opt-in via ALLURE_ENABLE_WRITE=true). Every tool carries MCP annotations and returns both a typed structuredContent payload and a markdown summary.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • allure_list_projects — read
  • allure_get_project_statistics — read
  • allure_list_launches — read
  • allure_get_test_results — read
  • allure_search_failed_tests — read
  • allure_list_test_cases — read
  • allure_get_test_case — read
  • allure_get_test_case_custom_fields — read
  • allure_list_statuses — read
  • allure_list_layers — read
  • allure_list_custom_fields — read
  • allure_list_categories — read

Credentials and setup notes

Configuration is passed through the environment: ALLURE_URL, ALLURE_TOKEN, ALLURE_SSL_VERIFY, ALLURE_ENABLE_WRITE, ALLURE_TEST_PROJECT_ID. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Where it fits

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Allure's toolset — allure_list_projects, allure_get_project_statistics, allure_list_launches and 11 more — is a fair guide to whether it matches your workflow. It is maintained by mshegolev; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Allure's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Allure.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
allure_list_projectsread
allure_get_project_statisticsread
allure_list_launchesread
allure_get_test_resultsread
allure_search_failed_testsread
allure_list_test_casesread
allure_get_test_caseread
allure_get_test_case_custom_fieldsread
allure_list_statusesread
allure_list_layersread
allure_list_custom_fieldsread
allure_list_categoriesread
allure_list_category_matchersread
allure_create_test_casewrite ⚑

How to install the Allure MCP server

{
  "mcpServers": {
    "allure-testops": {
      "command": "uvx",
      "args": ["allure-testops-mcp"],
      "env": {
        "ALLURE_URL": "your-value",
        "ALLURE_TOKEN": "your-value",
        "ALLURE_SSL_VERIFY": "your-value",
        "ALLURE_ENABLE_WRITE": "your-value",
        "ALLURE_TEST_PROJECT_ID": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
ALLURE_URLEndpoint or connection string the server talks to.Yes
ALLURE_TOKENCredential the server authenticates with.Yes
ALLURE_SSL_VERIFYConfiguration value read at startup.Optional
ALLURE_ENABLE_WRITEConfiguration value read at startup.Optional
ALLURE_TEST_PROJECT_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use Allure to allure list projects.
  • Use Allure to allure get project statistics.
  • Use Allure to allure list launches.

Frequently asked questions

It connects Allure to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (allure_list_projects, allure_get_project_statistics, allure_list_launches, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Allure directly.