MCP-Allure
This server converts Allure test reports into LLM-friendly JSON format for AI-assisted test analysis.
Read and parse Allure reports: Processes Allure test reports from a specified directory using the
get_allure_reporttoolExtract comprehensive test data: Captures hierarchical test information including test suites, test cases, steps, labels, parameters, attachments, status (passed/failed), timestamps, severity levels, titles, and descriptions
Enable AI-powered analysis: Transforms human-readable Allure reports into structured JSON optimized for LLM consumption to generate summaries, identify failure patterns, suggest fixes, and assist with debugging
Support automated documentation: Facilitates automated test documentation generation through structured data output
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP-Allureconvert the allure report at ./test-results to JSON format"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP-Allure
MCP-Allure is a MCP server that reads Allure reports and returns them in LLM-friendly formats.
Motivation
As AI and Large Language Models (LLMs) become increasingly integral to software development, there is a growing need to bridge the gap between traditional test reporting and AI-assisted analysis. Traditional Allure test report formats, while human-readable, aren't optimized for LLM consumption and processing.
MCP-Allure addresses this challenge by transforming Allure test reports into LLM-friendly formats. This transformation enables AI models to better understand, analyze, and provide insights about test results, making it easier to:
Generate meaningful test summaries and insights
Identify patterns in test failures
Suggest potential fixes for failing tests
Enable more effective AI-assisted debugging
Facilitate automated test documentation generation
By optimizing test reports for LLM consumption, MCP-Allure helps development teams leverage the full potential of AI tools in their testing workflow, leading to more efficient and intelligent test analysis and maintenance.
Problems Solved
Efficiency: Traditional test reporting formats are not optimized for AI consumption, leading to inefficiencies in test analysis and maintenance.
Accuracy: AI models may struggle with interpreting and analyzing test reports that are not in a format optimized for AI consumption.
Cost: Converting test reports to LLM-friendly formats can be time-consuming and expensive.
Key Features
Conversion: Converts Allure test reports into LLM-friendly formats.
Optimization: Optimizes test reports for AI consumption.
Efficiency: Converts test reports efficiently.
Cost: Converts test reports at a low cost.
Accuracy: Converts test reports with high accuracy.
Installation
To install mcp-repo2llm using uv:
{
"mcpServers": {
"mcp-allure-server": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"mcp",
"run",
"/Users/crisschan/workspace/pyspace/mcp-allure/mcp-allure-server.py"
]
}
}
}Tool
get_allure_report
Reads Allure report and returns JSON data
Input:
report_dir: Allure HTML report path
Return:
String, formatted JSON data, like this:
{
"test-suites": [
{
"name": "test suite name",
"title": "suite title",
"description": "suite description",
"status": "passed",
"start": "timestamp",
"stop": "timestamp",
"test-cases": [
{
"name": "test case name",
"title": "case title",
"description": "case description",
"severity": "normal",
"status": "passed",
"start": "timestamp",
"stop": "timestamp",
"labels": [
],
"parameters": [
],
"steps": [
{
"name": "step name",
"title": "step title",
"status": "passed",
"start": "timestamp",
"stop": "timestamp",
"attachments": [
],
"steps": [
]
}
]
}
]
}
]
}
Available Tools
1 toolget_allure_reportC
read allure report and return json data
| Name | Required | Description | Default |
|---|---|---|---|
| results_dir | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions reading and returning JSON data, but fails to disclose critical traits: whether this is a read-only operation (implied by 'read' but not explicit), potential side effects (e.g., file access permissions), error handling, or performance aspects (e.g., large report processing). The description adds minimal value beyond the basic action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very concise—a single sentence with no wasted words—and front-loaded with the core action. However, it is under-specified rather than efficiently concise; it could benefit from slightly more detail without losing brevity. It earns a high score for structure but loses a point due to under-specification.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (a tool to read and parse reports), lack of annotations, 0% schema coverage, and no output schema, the description is incomplete. It does not explain the return format beyond 'json data' (e.g., structure, keys), error conditions, or dependencies. For a tool with one parameter and no structured support, more context is needed to be adequately helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, with 1 parameter ('results_dir') undocumented in the schema. The description does not compensate by explaining what 'results_dir' means (e.g., path to Allure results directory, expected format), its role in reading the report, or any constraints. This leaves the parameter's semantics unclear, failing to add meaning beyond the bare schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states the tool 'read[s] allure report and return[s] json data', which provides a basic verb+resource combination ('read allure report') and outcome ('return json data'). However, it's vague about what constitutes an 'allure report' (e.g., test results, specific file format) and doesn't differentiate from siblings (though none exist). It avoids tautology by not merely restating the name, but lacks specificity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool—there are no alternatives mentioned (sibling tools are none), no context about prerequisites (e.g., requires an existing report directory), and no exclusions or comparisons. The description implies usage for reading reports but offers no further direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
With only one tool, there is no possibility of ambiguity or overlap between tools. The tool 'get_allure_report' has a single, clearly defined purpose of reading Allure reports and returning JSON data.
The single tool name 'get_allure_report' follows a clear verb_noun pattern (get + report). Since there is only one tool, consistency is inherently perfect with no deviations to assess.
The server has only one tool, which feels thin for a reporting domain like Allure. A single tool for reading reports lacks essential operations such as generating, listing, or managing reports, making it under-scoped for typical use cases.
The tool surface is severely incomplete for an Allure reporting server. It only provides a 'get' operation for reports, missing critical functions like creating reports, listing available reports, updating report data, or deleting reports, which are essential for full lifecycle coverage.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Direct access to Cypress tests results and accessibility reports in your AI workflow.
MCP server for AI access to SmartBear tools, including BugSnag, Reflect, Swagger, PactFlow, QTM4J.
MCP server for Pentest-Tools.com: run scans, manage findings and reports via your preffered LLM.
A Model Context Protocol server for Wix AI tools
Related MCP Servers
- AlicenseAqualityFmaintenanceQA Sphere MCP server that enables Large Language Models to interact directly with test management system test cases, supporting AI-powered development workflows and test case discovery.1534523MIT
- FlicenseNot gradedqualityDmaintenanceAn AI-powered server for code analysis, requirements validation, and automated fix proposals with human-in-the-loop confirmation. It supports multiple LLM providers and ensures safe file modifications through automatic backups and path validation.
- AlicenseAqualityAmaintenanceMCP server for Allure TestOps — lets an LLM agent (Claude Code, Cursor, Windsurf, etc.) inspect test quality without leaving the chat.113MIT
- AlicenseBqualityCmaintenanceProduction-ready MCP server for Allure TestOps, enabling test case, launch, test result, and test plan management via natural language.1001082MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/crisschan/mcp-allure'
If you have feedback or need assistance with the MCP directory API, please join our Discord server