Advanced Zebrunner MCP Server
A Model Context Protocol (MCP) server that brings advanced analytics, reporting, failure forensics, and safe TCM mutations to Zebrunner. Designed to coexist with the official Zebrunner MCP (beta) - see the "Dual-MCP setup" section below. Its 28 documented tools cover adv, test, cases, case. It runs locally over stdio via the published package.
People who work with adv, test and cases and want it reachable from Claude, Cursor, VS Code, or another MCP client. The project is written in TypeScript.
VERIFIED ACTIVE
LAST COMMIT 2026-09-16 · ★ 5 · #27 OF 81 MAINTAINED DATA & ANALYTICS · VERIFIED 2026-09-18
AGPL-3.0 · TypeScript servers · how we verify → /methodology
01 · Install Advanced Zebrunner MCP Server
before you install - you'll need
Set ZEBRUNNER_URL, ZEBRUNNER_LOGIN, ZEBRUNNER_TOKEN, ENABLE_RULES_ENGINE, DEFAULT_PAGE_SIZE, MAX_PAGE_SIZE before connecting.
Claude Code
claude mcp add maksimsarychau-mcp-zebrunner -- npx -y mcp-zebrunner Claude Desktop / Cursor / VS Code - add to config
{
"mcpServers": {
"maksimsarychau-mcp-zebrunner": {
"command": "npx",
"args": [
"-y",
"mcp-zebrunner"
]
}
}
} Same JSON for Cursor. For VS Code, rename the top-level key from `mcpServers` to `servers`.
Using another client? Same JSON, different key
Claude Desktop · mcpServers
Cursor · mcpServers
VS Code · servers
Windsurf · mcpServers
Zed · context_servers
Cline · mcpServers
Roo Code · mcpServers
Continue · mcpServers
LibreChat · mcpServers
Gemini CLI · mcpServers
Codex CLI · mcp_servers
Full setup guides: every client.
02 · Evidence
Security posture
What to check before giving this server access to your agent - from the registry, GitHub, and our own probes. We don't score safety; we show what's verifiable.
runs as local process (stdio) - runs on your machine with your user's permissions
license AGPL-3.0 - declared in the repository
npm package mcp-zebrunner - unscoped; check the name against the project README before installing
registry namespace io.github.maksimsarychau is GitHub-verified and matches the repo owner
03 · What Advanced Zebrunner MCP Server can do
Prose above is summarized from the project's README and registry record - no invented capabilities.
What you can build
With this server connected, an agent can get detailed test case information, fetch multiple cases by key (partial success), filter by specific automation states, and search test cases by title (partial match).
The 28 tools it gives your agent
Extracted from the project's README - what Advanced Zebrunner MCP Server lets an agent do.
- adv_get_test_case_by_key
- - Get detailed test case information
- adv_batch_get_test_cases
- - Fetch multiple cases by key (partial success)
- adv_get_test_cases_advanced
- - Advanced filtering with automation states, dates
- adv_get_test_cases_by_automation_state
- - Filter by specific automation states
- adv_get_test_case_by_title
- - Search test cases by title (partial match)
- adv_get_test_case_by_filter
- - Advanced filtering by suite, dates, priority, automation state
- adv_get_automation_states
- - List available automation states
- adv_get_automation_priorities
- - List available priorities with IDs
- adv_get_all_tcm_test_cases_by_project
- - Get ALL test cases (handles pagination)
- adv_get_all_tcm_test_cases_with_root_suite_id
- - All test cases with hierarchy info
- adv_get_test_cases_by_suite_smart
- - Smart suite test case retrieval with root/child auto-detection
- adv_list_test_suites
- - List suites with pagination
show all 28 tools
- adv_get_suite_hierarchy
- - Hierarchical tree view
- adv_get_root_suites
- - Get top-level suites
- adv_get_all_subsuites
- - Get all child suites
- adv_get_tcm_suite_by_id
- - Get suite by ID (simple: fast direct API, full: hierarchy-enriched)
- adv_get_tcm_test_suites_by_project
- - Comprehensive suite listing
- adv_get_all_tcm_test_case_suites_by_project
- - Get all TCM test case suites with pagination
- adv_get_root_id_by_suite_id
- - Find root suite for any suite
- adv_create_test_suite
- - Create a new Test Suite
- adv_update_test_suite
- - Update an existing Test Suite (full PUT)
- adv_create_test_case
- - Create a new Test Case with runtime validation of priorities, automation states, and custom fields. Accepts {file_path} in attachments. Optional source_case_key
- adv_update_test_case
- - Partially update a Test Case by ID or key (PATCH). Accepts {file_path} in attachments for local file upload.
- adv_analyze_test_impact
- - Rank Zebrunner cases affected by code changes from compact semantic context
- adv_get_test_coverage_by_test_case_steps_by_key
- - Analyze implementation coverage
- adv_get_enhanced_test_coverage_with_rules
- - Rules-based coverage analysis
- adv_analyze_test_cases_duplicates
- - Find and group similar test cases by step similarity
- adv_analyze_test_cases_duplicates_semantic
- - Advanced semantic analysis with LLM-powered step clustering
Latest releases
v9.4.4 · 2026-09-16
9.4.3
v9.4.3 · 2026-09-16
Summary · This release adds a read-only Zebrunner MCP tool that turns a test suite URL into a structured Jira automation intake plan (parent tasks + per-case subtasks), plus a /jira-automation-plan slash prompt for…
v9.4.2 · 2026-09-15
Patch release fixing pagination and suite-scoping issues found in v9.4.1. Defaults unchanged; new parameters are additive. Note: custom RQL filter is now AND-combined with automation/date/exclude clauses. · For AI…
04 · Who maintains Advanced Zebrunner MCP Server
Advanced Zebrunner MCP Server is maintained by maksimsarychau. It's the only MCP server we track from this author; the repo dates to Oct 2025.
05 · Facts
- repository
- github.com/maksimsarychau/mcp-zebrunner
- category
- data & analytics - ranked #27 of 81 actively-maintained data & analytics servers as of 2026-09-18.
- release cadence
- 9 releases in the last 90 days (latest 2026-09-16)
- registry
- io.github.maksimsarychau/mcp-zebrunner (active, first published 2025-12-02 · 4 versions)
- packages
- npm:mcp-zebrunner · npm:mcp-zebrunner
06 · Advanced Zebrunner MCP Server FAQ
Is Advanced Zebrunner MCP Server still maintained?
Yes - as of 2026-09-18, its last commit was 2026-09-16 and it shipped 9 releases in the last 90 days. We re-verify nightly.
What can Advanced Zebrunner MCP Server do?
With this server connected, an agent can get detailed test case information, fetch multiple cases by key (partial success), filter by specific automation states, and search test cases by title (partial match).
How do I install Advanced Zebrunner MCP Server?
Run `npx -y mcp-zebrunner`. The README documents 6 environment variables (ZEBRUNNER_URL, ZEBRUNNER_LOGIN, ZEBRUNNER_TOKEN…) to set first. Set ZEBRUNNER_URL, ZEBRUNNER_LOGIN, ZEBRUNNER_TOKEN, ENABLE_RULES_ENGINE, DEFAULT_PAGE_SIZE, MAX_PAGE_SIZE before connecting. You can also paste the ready-made client config above.
Does Advanced Zebrunner MCP Server run locally?
Yes - it's a stdio server: it runs on your machine (via npx) with your user's permissions. Your data stays local unless the server itself calls external APIs.
07 · Alternatives to Advanced Zebrunner MCP Server
Alternatives to Advanced Zebrunner MCP Server
Maintained data & analytics servers if Advanced Zebrunner MCP Server isn't the fit.
- PostHog MCP Server Official PostHog MCP Server for product analytics, feature flags, experiments, and more. ★ 39,845 · 2026-09-18
- Server Chart A Model Context Protocol server for generating charts using AntV. ★ 4,367 · 2026-08-27
- Usertour MCP Server Official Usertour MCP Server for in-app onboarding: flows, checklists, surveys, and analytics. ★ 2,307 · 2026-09-18
- Google Ads + Meta Ads + GA4 MCP Google Ads, Meta Ads & GA4 MCP server - 250+ tools for campaigns, creatives, audiences & reports. ★ 1,939 · 2026-09-09
- Blitz Give AI agents full control over iOS/macOS development via a native macOS app with 30+ MCP tools. ★ 1,748 · 2026-07-14
- walkerOS Flow Build, validate, simulate, and deploy walkerOS event pipelines ★ 344 · 2026-09-16
Pairs well with
Servers that cover what Advanced Zebrunner MCP Server doesn't - only shown when the pairing reason fits the companion.
More data & analytics MCP servers · Markifact: AI Performance Marketing · SemanticOps MCP (for Power BI) · Okama MCP · Instagram MCP (mcpware) · Gtm Ga4
More TypeScript MCP servers · Domain To Linkedin Url Resolver · Icp Fit Scorer · Job Board Keyword Signal Scanner · Japan Data MCP · The Crawler · see all