MCP Server

Unified Zebrunner MCP server for TCM test cases, suites, coverage analysis, launchers, etc.

Remote serverstreamable-httpGo

What is the MCP MCP server?

MCP MCP server is a hosted integration for AI assistants that speak the Model Context Protocol. Unified Zebrunner MCP server for TCM test cases, suites, coverage analysis, launchers, etc.

What you get

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.

What the assistant can call

Once MCP is connected, these are the calls the assistant has available:

  • adv_get_test_case_by_key — Get detailed test case information

Configuration and credentials

You will need 8 environment variables: ZEBRUNNER_URL, ZEBRUNNER_LOGIN, ZEBRUNNER_TOKEN, DEBUG, ENABLE_RULES_ENGINE, DEFAULT_PAGE_SIZE, MAX_PAGE_SIZE, LAUNCH_ID. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Choosing this one

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. MCP's toolset — adv_get_test_case_by_key — is a fair guide to whether it matches your workflow. It is maintained by maksimsarychau; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Before you rely on it

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
adv_get_test_case_by_keyGet detailed test case information

How to install the MCP MCP server

{
  "mcpServers": {
    "mcp-zebrunner": {
      "command": "node",
      "args": ["/full/absolute/path/to/mcp-zebrunner/dist/server.js"],
      "env": {
        "ZEBRUNNER_URL": "https://your-company.zebrunner.com/api/public/v1",
        "ZEBRUNNER_LOGIN": "your.email@company.com",
        "ZEBRUNNER_TOKEN": "your_api_token_here",
        "DEBUG": "false",
        "ENABLE_RULES_ENGINE": "true",
        "DEFAULT_PAGE_SIZE": "100",
        "MAX_PAGE_SIZE": "100"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
ZEBRUNNER_URLEndpoint or connection string the server talks to.Yes
ZEBRUNNER_LOGINConfiguration value read at startup.Optional
ZEBRUNNER_TOKENCredential the server authenticates with.Yes
DEBUGConfiguration value read at startup.Optional
ENABLE_RULES_ENGINEConfiguration value read at startup.Optional
DEFAULT_PAGE_SIZEConfiguration value read at startup.Optional
MAX_PAGE_SIZEConfiguration value read at startup.Optional
LAUNCH_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use MCP to adv get test case by key.

Frequently asked questions

It connects MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (adv_get_test_case_by_key) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP directly.