Isolated, deterministic unit tests across Jest, Vitest, JUnit, pytest, and similar frameworks.
The Unit Tests MCP supports unit test generation and improvement across multiple languages and frameworks. It analyzes the existing test setup, proposes an architecture that fits, and generates isolated, deterministic, behavior-focused tests.
Use this MCP for new unit test creation, coverage-driven test plans, regression tests for specific bugs, or non-invasive recommendations against existing suites.
Mount: /mcp/v2/unit_tests. Config key: qe_unit_tests_v2.
| Environment | URL | Transport | Status |
|---|---|---|---|
| Development | https://qe-mcp.bindg.com/mcp/v2/unit_tests |
http | V2 |
| Production | https://qe-mcp.bindg.com/mcp/v2/unit_tests |
http | V2 |
~/.cursor/mcp.json{
"mcpServers": {
"qe_unit_tests_v2": {
"url": "https://qe-mcp.bindg.com/mcp/v2/unit_tests",
"transport": "http"
}
}
}
.vscode/mcp.json{
"servers": {
"qe_unit_tests_v2": {
"url": "https://qe-mcp.bindg.com/mcp/v2/unit_tests",
"type": "http"
}
},
"inputs": []
}
| Tool | What it does |
|---|---|
unit_test_core |
Generates isolated, AAA-structured unit tests (Python, JS/TS, Java, C#, Go, Rust). Non-destructive writes to tests/recommended/ when tests already exist. |
unit_test_coverage |
Measures coverage, inventories infrastructure, finds blind spots, and produces a tests/recommended/ improvement package. Hand off to unit_test_core to implement. |
unit_test_mutation |
File-scoped mutation testing (PITest, Stryker, Mutmut, and others). Scores effectiveness via killed vs survived mutants; confirm-before-apply remediation only. |
https://qe-mcp.bindg.com/mcp/v2/unit_tests.qe_unit_tests_v2.When existing unit tests are already present, recommended improvements are generated
non-invasively under tests/recommended/ unless the developer asks for edits.
Use unit_test_coverage and unit_test_mutation before or after
unit_test_core when you want coverage or mutation feedback.
qe_unit_tests_v2, detect the unit
test framework, test structure, and existing mocks/fixtures/setup. Summarize current
conventions and how new tests should fit in.
qe_unit_tests_v2,
generate high-quality unit tests for <module path> using AAA, isolated
mocks at boundaries, and behavior-focused assertions. Do not modify existing tests unless I
ask.
qe_unit_tests_v2, run
unit_test_coverage on this repo and propose a non-destructive improvement package.
qe_unit_tests_v2, run mutation testing
on <file> and propose stronger tests (confirm before apply).
qe_unit_tests_v2, write a
regression unit test for this bug: <describe bug>. Make the test fail first,
then describe the minimal fix.
This MCP is hosted on qe-mcp.bindg.com. If you are on BBVPN, add
qe-mcp.bindg.com to your IDE's http.noProxy setting (not in
mcp.json).
{
"http.noProxy": [
"qe-mcp.bindg.com"
]
}
qe_unit_tests_v2, list available
tools or capabilities and provide a short ready checklist.