QA Copilot MCP Server
Allows an MCP client to query public GitHub repositories for recent CI status by fetching Actions runs through the GitHub REST API and summarizing their outcomes.
Provides a tool that reads recent GitHub Actions runs for a repository and summarizes them into pass, fail, and in-progress counts.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@QA Copilot MCP ServerSummarize the latest Playwright test run and list any flaky tests."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
QA Copilot MCP Server
A Model Context Protocol server that hands an AI assistant a small set of concrete QA/test-intelligence tools instead of asking it to guess: summarize a Playwright run, find flaky tests across several runs, explain a failure heuristically, scaffold a Playwright test stub, and read a GitHub repo's recent CI status. Point Claude Desktop, Claude Code, or any other MCP-compatible host at it and those become real tool calls, not free-text guesses.
It's the "give the AI real data, not vibes" piece of a QA automation portfolio: the
other repos in this portfolio (healthcare-qa-automation-framework,
healthcare-data-quality-framework) produce Playwright JSON reports and CI runs; this
server is what turns those into something an assistant can actually query.
Why it's built this way
The protocol wiring is a thin layer over plain functions. Every tool's real logic lives in
src/playwright/,src/github/, andsrc/tools/as small, pure(-ish), independently unit-tested modules.src/index.tsonly registers them with the MCP SDK - so the hard-to-get-wrong part (report parsing, flaky detection, heuristics) is covered by fast unit tests, and the protocol wiring is covered by a separate end-to-end smoke test (below).GitHub access is pluggable, the same pattern as the LLM integrations elsewhere in this portfolio.
GitHubClientis an interface;RealGitHubClientwrapsfetchagainst the GitHub REST API,FakeGitHubClientreturns canned data. That makesget_repo_ci_statusfully unit-testable offline, while the real client is genuine, runnable code - an MCP host running on a developer's machine has normal internet access, even in environments (like this repo's own CI sandbox) that don't.Test-stub generation is deterministic, not LLM-based, on purpose. Given a named sequence of
data-testidinteractions,generate_playwright_test_stubalways produces the same output - instant, free, reproducible. A different tool for a different job (generating test cases from a spec or user story, where an LLM actually adds value) is a separate project in this portfolio.A protocol-level smoke test, not just unit tests.
smoke-test.mjsspawns the built server as a real child process and drives it with the official MCPClientover stdio -tools/list, then atools/callper tool - so CI proves the actual wire protocol works, not just the functions behind it.
Related MCP server: playwright-fixer-mcp
Tools
Tool | What it does |
| Parses a Playwright JSON reporter output into pass/fail/timeout/skipped/flaky counts, duration, and full failure details. |
| Compares the same tests across 2+ Playwright JSON reports and flags any whose outcome wasn't consistent. |
| Heuristic, pattern-matched root-cause guess for a raw error message. Fully offline. |
| Deterministically scaffolds a runnable Playwright test from a named sequence of |
| Fetches a public GitHub repo's recent Actions runs and summarizes pass/fail/in-progress counts. |
Architecture
src/
index.ts MCP server: registers all 5 tools, connects over stdio
playwright/reportParser.ts Pure Playwright-JSON parsing: summarizeReport, findFlakyTests
github/githubClient.ts GitHubClient interface + RealGitHubClient (fetch) + FakeGitHubClient
tools/
explainFailure.ts Heuristic pattern-matching (ported from the triage_failure.py
script in healthcare-qa-automation-framework)
generateTestStub.ts Deterministic Playwright test-file template generator
getRepoCiStatus.ts Wraps GitHubClient into pass/fail/in-progress counts
test/ Vitest unit tests for every module above
fixtures/ Sample Playwright JSON reports (3 runs, used for flaky-test tests)
smoke-test.mjs End-to-end MCP protocol smoke test (real child process, real client)
.github/workflows/ci.yml Type-check, unit tests, build, protocol smoke testTech stack
TypeScript · Node.js · @modelcontextprotocol/sdk · Zod · Vitest · GitHub REST API ·
GitHub Actions
Running it locally
npm install
npm run build # compiles to dist/
npm test # unit tests (27 tests, fully offline)
npm run smoke # builds, then drives the real server over stdio via the MCP clientUsing it from an MCP host
Point any MCP-compatible client at the built server, e.g. in Claude Desktop's
claude_desktop_config.json:
{
"mcpServers": {
"qa-copilot": {
"command": "node",
"args": ["/absolute/path/to/qa-copilot-mcp-server/dist/index.js"]
}
}
}Set GITHUB_TOKEN in the environment to raise get_repo_ci_status's unauthenticated
GitHub rate limit (60 requests/hour without one, 5,000/hour with one) - it works fine
without a token for occasional use.
CI
Every push and pull request to main runs a single job: type-check
(tsc --noEmit), the unit test suite (vitest run), a production build, and the
protocol-level smoke test (node smoke-test.mjs) against the built output. No network
access is assumed or required anywhere in CI - get_repo_ci_status is exercised only
against FakeGitHubClient in the unit tests, and the smoke test treats a network-free
get_repo_ci_status result as a pass as long as the server reports it cleanly via MCP's
isError channel instead of crashing.
What this is not
This isn't a general-purpose GitHub or CI dashboard - it's a small, focused set of tools built specifically around the Playwright-report and GitHub-Actions shapes this portfolio's other repos actually produce, meant to demonstrate how an AI assistant gets wired up with real, verifiable test data instead of being asked to reason about test results from a paraphrase.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceEnables AI assistants to execute browser automation, perform QA tasks, and generate test code through natural language commands using Playwright.5
- FlicenseAqualityDmaintenanceAutomated Playwright E2E test repair powered by a self-improving, governed MCP server that runs failing tests, collects failure artifacts, reasons about root causes, validates and applies fixes, and re-runs to verify.12
- AlicenseBqualityBmaintenanceSupercharges AI-assisted debugging of Playwright tests by parsing trace files to extract failures, action history, network logs, screenshots, and suggesting fixes.612MIT
- AlicenseNot gradedqualityBmaintenanceEnables autonomous web QA by exposing Playwright browser control as MCP tools for navigation, accessibility snapshotting, interaction, and bug detection.3MIT
Related MCP Connectors
BuildPulse CI test analytics for AI agents — flaky tests, coverage, and CI run history.
Voice-powered bug reporting with 13 MCP tools. Record bugs by talking; let AI find and fix them.
Official MCP server for Qase — manage test cases, runs, suites, defects via AI tools.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sharath9271-design/qa-copilot-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server