Compare application features against existing automation and identify missing scenarios, weak coverage areas, and recommended new tests.
The Test Gap Analyzer MCP maps production code to tests, quantifies gaps, assesses
risk/quality, and audits within-suite redundancy. Talk in plain language; the agent
picks the right tools. Reports land under .qe/reports/ (safe to delete
after review — add .qe/ to .gitignore).
Use this when you want what’s missing, what to test next, whether tests are strong, or whether a folder is bloated. Pair later with Test Spec for plans and E2E V2 to author new Playwright tests.
Mount: /mcp/v2/test_gap_analyzer. Config key: test_gap_analyzer.
| Environment | URL | Transport | Status |
|---|---|---|---|
| Development | https://qe-mcp.bindg.com/mcp/v2/test_gap_analyzer |
http | V2 |
| Production | https://qe-mcp.bindg.com/mcp/v2/test_gap_analyzer |
http | V2 |
~/.cursor/mcp.json{
"mcpServers": {
"test_gap_analyzer": {
"url": "https://qe-mcp.bindg.com/mcp/v2/test_gap_analyzer",
"transport": "http"
}
}
}
.vscode/mcp.json{
"servers": {
"test_gap_analyzer": {
"url": "https://qe-mcp.bindg.com/mcp/v2/test_gap_analyzer",
"type": "http"
}
},
"inputs": []
}
https://qe-mcp.bindg.com/mcp/v2/test_gap_analyzer.test_gap_analyzer.| You want… | Tool |
|---|---|
| What’s missing? | analyze_test_gaps |
| How bad are the gaps / what next? | mitigate_test_gaps (after a gap report) |
| Are my tests strong, or just numerous? | assess_test_quality |
| Is this suite bloated or overlapping? | analyze_test_redundancy |
| Gaps + quality + redundancy in one run | Full mode on analyze_test_gaps (see below) |
When coverage seems okay but tests feel weak — ask to score assertion strength.
Point at a folder. The agent reports overlaps; it should not remove tests unless you approve.
Say clearly that you want a full run and include a test folder for
redundancy, for example: “Run a full test gap analysis on tests/e2e/.”
You’ll confirm each major step (yes / no / stop).
| Artifact | Meaning |
|---|---|
.qe/reports/test-gap-analysis-….md | Main gap report |
| Optional canvas / HTML dashboard | Easier browsing of the same findings |
| Quality section / quality canvas | Scorecard when you run quality assessment |
.qe/reports/test-redundancy-report-….md | Overlap / consolidation findings |
test_gap_analyzer.
tests/checkout/ — don’t
delete anything yet.
tests/e2e/.
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"
]
}
test_gap_analyzer, list
available tools or capabilities and provide a short ready checklist.