MCP server for TestRail — CRUD plus AI test-case generation from text, Jira tickets, and Confluence pages
Project description
testrail-mcp
An MCP server for TestRail that goes beyond CRUD: it prepares everything an MCP client needs to generate real test cases from Jira tickets, Confluence pages, or any free-form spec — and pushes them back to TestRail.
Built on the official Python MCP SDK (FastMCP). Designed to plug into Claude Desktop, Claude Code, Cursor, or any other MCP-capable client.
No ANTHROPIC_API_KEY required. The server never calls an LLM. It fetches data (Jira/Confluence/TestRail), bundles in house-style anchors, and returns it with instructions for your MCP client. The LLM work happens in your client (Claude Desktop / Cursor / etc.) on your existing subscription — you pay once.
What it gives you
CRUD over TestRail
list_projects— projects visible to the userlist_suites— suites under a projectsearch_test_cases— list cases under a project / suite / section, optionally filter by title substringget_test_case— fetch one case by IDcreate_test_case— create a case in a sectionget_or_create_section— resolve a path likeAuth > Login > Edge Cases, creating missing nodes
Preparation tools — fetch + bundle data, hand off to your MCP client's LLM
prepare_cases_from_text— feed any spec/PRD/bug-report text → returns spec + house-style anchors + schema + instructions for the client to generate cases.prepare_cases_from_jira— pass a Jira issue key (e.g.ABC-123); server fetches summary, description, comments, subtasks, walks the ADF tree.prepare_cases_from_confluence— pass a Confluence page ID; HTML body stripped to plain text.preview_house_style— see the 5 sibling cases the server will use as in-context style anchors.add_test_cases_bulk— once the LLM has the cases array, push them all into TestRail in one call (with auto section-hierarchy creation).
All three prepare_cases_* tools pull a few existing cases from the target section as house-style examples by default, so generated cases match local title casing, step granularity, and expected-result phrasing. Override with house_style_section_id to draw style from a different "golden" section, or set house_style=False to skip.
Quick start
Run with uvx (recommended — no clone, no venv)
Once the package is on PyPI:
uvx testrail-mcp-server
For local development from a checkout:
git clone https://github.com/Sergey-Bl/testrail-mcp
cd testrail-mcp
uv venv --python 3.12
uv pip install -e .
cp .env.example .env # fill in TestRail / Jira / Anthropic keys
Inspect interactively (recommended first step)
npx @modelcontextprotocol/inspector python server.py
This opens a local web UI where each tool can be called by hand. Use it to verify auth and tool wiring before you plug into a client.
Use in Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"testrail": {
"command": "uvx",
"args": ["testrail-mcp-server"],
"env": {
"TESTRAIL_BASE_URL": "https://your-org.testrail.io",
"TESTRAIL_USER": "you@example.com",
"TESTRAIL_API_KEY": "...",
"TESTRAIL_PROJECT_ID": "1",
"TESTRAIL_SUITE_ID": "1",
"JIRA_BASE_URL": "https://your-org.atlassian.net",
"JIRA_USER": "you@example.com",
"JIRA_API_TOKEN": "..."
}
}
}
}
Restart Claude Desktop. The testrail server should appear in the tools menu.
Use in Claude Code
claude mcp add testrail -- uvx testrail-mcp-server
(You'll still need to provide env vars — either via claude mcp add --env KEY=VALUE flags or a .env in the working directory.)
Use in Cursor
In ~/.cursor/mcp.json:
{
"mcpServers": {
"testrail": {
"command": "uvx",
"args": ["testrail-mcp-server"],
"env": { "TESTRAIL_BASE_URL": "...", "TESTRAIL_USER": "...", "TESTRAIL_API_KEY": "..." }
}
}
}
Configuration
| Env var | Required | Purpose |
|---|---|---|
TESTRAIL_BASE_URL |
yes | e.g. https://your-org.testrail.io |
TESTRAIL_USER |
yes | TestRail account email |
TESTRAIL_API_KEY |
yes | from My Settings → API Keys |
TESTRAIL_PROJECT_ID |
optional | default project ID for tools that take it |
TESTRAIL_SUITE_ID |
optional | default suite ID |
TR_TEMPLATE_ID |
optional | default template (2 = "Test Case (Steps)") |
TR_TYPE_ID |
optional | default case type |
TR_PRIORITY_ID |
optional | default priority (3 = Medium) |
JIRA_BASE_URL |
optional | only for prepare_cases_from_jira |
JIRA_USER |
optional | Jira account email |
JIRA_API_TOKEN |
optional | https://id.atlassian.com/manage-profile |
CONFLUENCE_BASE_URL |
optional | only for prepare_cases_from_confluence |
CONFLUENCE_EMAIL |
optional | defaults to JIRA_USER |
CONFLUENCE_API_TOKEN |
optional | defaults to JIRA_API_TOKEN |
Example: from a Jira ticket straight into TestRail
In Claude Code or Claude Desktop, after the server is registered:
Generate test cases from
ABC-123and put them underAuth > Login > Smoke.
The server walks the section path (creating missing nodes), pulls the Jira ticket, generates ~15-30 cases, then bulk-creates them with house-style defaults (template 2, type 7, priority 3). Reply contains every new case ID.
Tool reference
In addition to the basics above:
Test-case authoring & QA
prepare_feature_bootstrap— one-shot: ingest a Confluence page / Jira ticket / raw spec, plan the suite + section, fetch house-style anchors. Hand it all back to the client LLM with step-by-step instructions for generation + push.dedupe_against_section— flag generated cases that look like duplicates of cases already in a target section (title-token containment; configurablethreshold).prepare_lint— return the case batch + lint instructions; the client LLM reviews and reports vague titles, generic expecteds, combined steps, etc.prepare_coverage_gaps— return the spec + case titles + instructions; the client LLM lists testable behaviours not covered.list_sections,find_populated_section,create_suite,update_case— CRUD helpers.
Test-run management & reporting
list_runs,get_run,get_tests_in_run,get_results_for_run— read-side access.create_run,update_run,close_run— write-side. Pair with CI to auto-create a run per build.add_result,add_bulk_results— post results back from automation. Status accepts either a string ("passed","failed","blocked","retest") or a TestRail status_id.prepare_run_summary— fetch run metadata + statuses + failure comments; client LLM writes the ship-ready Markdown report.prepare_runs_diff(run_a, run_b)— regression/fix delta between two runs; client LLM narrates the diff as Markdown.flaky_test_detector(case_id, last_n_runs)— pull a case's status across recent runs and flag flakiness when it flips between pass/fail. Pure data, no LLM needed.
Roadmap
- SSE / HTTP transport for hosted use
- Embedding-based dedupe (semantic, not just token overlap)
-
update_case— patch existing cases when the spec changes - Suite cloning across projects
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file testrail_mcp_server-0.3.0.tar.gz.
File metadata
- Download URL: testrail_mcp_server-0.3.0.tar.gz
- Upload date:
- Size: 21.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8c7bad8a03738584af5b85c50b5ce356ff89e1593ad58a6fb2f144a0dfcd306d
|
|
| MD5 |
3b205b550c56b925154527832f34b5dd
|
|
| BLAKE2b-256 |
268d09cd5de6428217e8420c452ab4d32151b5d2f4781b08b4f447e2a1906c62
|
File details
Details for the file testrail_mcp_server-0.3.0-py3-none-any.whl.
File metadata
- Download URL: testrail_mcp_server-0.3.0-py3-none-any.whl
- Upload date:
- Size: 22.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.11 {"installer":{"name":"uv","version":"0.10.11","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bb88471de48ce050bbb03488c12607160f8451460dc2d17368425be1711db3e
|
|
| MD5 |
60b6c0fc487f0a917d7b13d37872614b
|
|
| BLAKE2b-256 |
394e2b458ac16b1484928010f62b94a7a3998049d2977d4953915ef895d619b8
|