
MCP Release QA
OfficialFreeEnsure your MCP server meets release standards.
Free · Opens the source repo
What MCP Release QA does
MCP Release QA is a skill designed to verify the integrity and functionality of an MCP server before it is released. This skill executes a series of runtime checks against a fresh server process built from the candidate revision, ensuring that the server behaves as expected according to its documentation and source code. By focusing on protocol behavior and contract adherence, it provides developers with the necessary tools to confirm that their server is ready for production use.
The skill emphasizes the importance of establishing a clean server environment and running comprehensive tests to capture real-time evidence of server capabilities. It systematically checks the server's entry point, supported protocol versions, and the registration of tools and resources. This thorough approach helps identify any discrepancies between the server's runtime behavior and its documented capabilities, effectively preventing issues that could arise post-deployment.
MCP Release QA also includes mechanisms for testing failure paths, ensuring that the server responds correctly to erroneous inputs and unexpected conditions. This is crucial for maintaining robustness and reliability in production scenarios. The skill culminates in a detailed report that outlines the findings from the tests, providing a clear verdict on the server's readiness for release.
This skill is particularly useful for developers and teams involved in the deployment of MCP servers, as it helps streamline the quality assurance process and ensures that all necessary checks are performed before a server goes live. By integrating this skill into your workflow, you can enhance the reliability of your MCP server deployments and reduce the risk of post-release issues.
When to use it
Use this skill when preparing to ship or review an MCP server, tool, or resource to ensure it meets quality standards.
When not to use it
This skill is not suitable for testing non-MCP systems or for environments where runtime evidence is not required.
What you can build with it
Pre-release Testing
Before deploying an MCP server, run this skill to ensure it behaves as expected and meets all documentation standards.
Quality Assurance for Tools
Use this skill to validate the functionality of tools and resources built on the MCP server, ensuring they are ready for user interaction.
Protocol Compliance Checks
When updating or modifying an MCP server, employ this skill to verify that all changes adhere to the expected protocol behavior.
How to install MCP Release QA
View source1. Install with the skills CLI
npx skills add github/awesome-copilot/mcp-release-qa --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by githubMCP Release QA
Test the server that users will run. A schema review or a passing unit test is not runtime evidence.
This skill complements security review. It focuses on protocol behavior, published-contract drift, transport correctness, and reproducible release evidence.
Rules
- Run checks against a fresh server process built from the candidate revision.
- Keep
initialize,notifications/initialized, discovery, and invocation in the same session. A new process is a new STDIO session. - Treat source registrations as implementation truth and public documentation as a contract that must match it.
- Record exact commands and raw responses. Do not replace missing evidence with "looks correct."
- Do not invoke mutation-capable tools against production data. Use fixtures, a sandbox, or stop and name the missing safe test environment.
- Derive the expected capability inventory from the candidate source on every run.
1. Establish the release surface
Identify:
- candidate commit and build command;
- server entry point and transport: STDIO, Streamable HTTP, or SSE;
- supported MCP protocol versions;
- source files that register tools, resources, resource templates, and prompts;
- generated catalogs, manifests, README tables, and install instructions;
- existing protocol, integration, and smoke-test commands.
Prefer repository-native commands. Inspect package.json, pyproject.toml,
Makefile, CI workflows, and contributor instructions before inventing a test
harness.
2. Start a clean server
Build the candidate and start the documented entry point with test-safe configuration. Capture:
- the exact command;
- commit SHA;
- environment variable names, with values redacted;
- stdout, stderr, and exit status;
- the endpoint or child-process transport used by the client.
For STDIO, stdout is protocol-only. Logs, banners, and stack traces belong on stderr. For HTTP transports, record the status, relevant MCP headers, and session identifier handling without printing credentials.
If the server cannot start from its documented instructions, report that as a release failure and preserve the startup error verbatim.
3. Exercise one complete session
Run this sequence through a real MCP client or the repository's integration harness:
initializewith a protocol version the server claims to support.- Confirm the negotiated version and advertised capabilities.
- Send
notifications/initialized. - Call
ping. - Call each supported discovery method:
tools/listresources/listresources/templates/listprompts/list
- Exercise at least one representative read-only item from every advertised capability class.
- Follow pagination until no cursor remains when a list method is paginated.
Do not send post-initialization requests through separate one-shot processes. That accidentally tests several incomplete sessions instead of one valid session.
4. Prove inventory parity
Build four inventories from current evidence:
| Surface | Evidence |
|---|---|
| Source | Registered tool, resource, template, and prompt definitions |
| Runtime | Results from the live discovery methods |
| Generated metadata | Catalogs, manifests, or generated indexes |
| Documentation | README, reference pages, and install output |
Compare by stable identifier. Report:
- source entries missing at runtime;
- runtime entries absent from metadata or documentation;
- stale names, descriptions, arguments, URIs, or prompt parameters;
- documented install commands that do not start the candidate server.
Regenerate derived files with the repository's own build command, then fail if the working tree still contains unexplained generated changes.
5. Check published contracts
For every discovered item, verify the runtime definition against its source:
Tools
- Name and description are stable and specific.
inputSchemadefines types, required fields, enums, and bounds where needed.- Unknown properties are rejected when the tool contract is closed.
- Mutation, idempotence, read-only, and open-world annotations match behavior.
- Successful calls conform to
outputSchemawhen one is published. - Errors are protocol errors or structured tool failures, not leaked stack traces.
Resources and templates
- URIs and MIME types match the registered definitions.
- Static resources are readable.
- Template parameters are validated before resolution.
- Missing or forbidden resources fail explicitly.
Prompts
- Required and optional arguments match discovery output.
prompts/getreturns usable messages for valid arguments.- Missing required arguments and unknown prompt names fail explicitly.
6. Test failure paths
At minimum, probe:
- a request before initialization completes;
- malformed JSON or an invalid JSON-RPC envelope;
- an unknown method;
- an unsupported protocol version;
- repeated initialization;
- unknown tool, resource, and prompt names;
- missing, extra, wrong-type, and out-of-bounds arguments;
- a request at the documented transport-size limit and one beyond it;
- a controlled internal failure with credentials and stack traces redacted.
Verify that each response has the correct request ID, a useful error message, and no successful side effect. For STDIO, also confirm every stdout line is a complete protocol message and a healthy session leaves stderr clean unless the server explicitly documents diagnostic output.
7. Smoke-test installation
When the project publishes an install command:
- Create a temporary destination outside the source checkout.
- Run the public install command exactly as documented.
- Start the installed artifact without relying on files from the source tree.
- Repeat initialization, discovery, and one read-only invocation.
- Remove the temporary destination after preserving the command output.
An install string that was only inspected is unverified.
8. Report the evidence
Use this format:
# MCP Release QA
Candidate: [commit]
Transport: [STDIO | Streamable HTTP | SSE]
Verdict: PASS | PASS WITH CAVEATS | FAIL
## Commands and results
- `[exact command]` — [exit status and result]
## Session transcript
- initialize: [result]
- discovery: [result]
- representative calls: [result]
- negative paths: [result]
## Parity
| Identifier | Source | Runtime | Metadata | Docs | Result |
|---|---|---|---|---|---|
## Findings
| Severity | Evidence | Impact | Narrowest fix |
|---|---|---|---|
## Missing evidence
- [check that could not run and why]
Use FAIL for a server that cannot start, complete a valid session, keep the
transport parseable, or safely reject invalid input. Use PASS WITH CAVEATS
only for bounded documentation or metadata drift that does not misrepresent a
dangerous capability. Otherwise use PASS.
Frequently asked questions about MCP Release QA
Similar skills
Turborepo
Optimized build system for JavaScript/TypeScript monorepos.
Azure Pipelines Validation
Streamline your Azure DevOps pipeline changes locally.
Azure Developer CLI
Streamline your Azure project workflows with best practices.
Azure Container Registry CLI
Manage Azure Container Registry resources with ease.
Aspire
Build and orchestrate polyglot distributed applications seamlessly.
Vercel CLI
Manage and deploy Vercel projects from the command line.
