get_qa_agent
Retrieve information about the Quality Assurance Agent to access QA capabilities and testing functionality within the MCP server environment.
Instructions
Get information about the Quality Assurance Agent
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/agents/server.py:78-84 (handler)The handler function for the 'get_qa_agent' MCP tool. It is registered via the @mcp.tool decorator and simply returns the predefined QA agent profile from AGENT_PROFILES.@mcp.tool( "get_qa_agent", description="Get information about the Quality Assurance Agent" ) def get_qa_agent() -> Dict: """Returns the QA Agent's profile, capabilities, and limitations.""" return AGENT_PROFILES["qa_agent"]
- src/agents/server.py:30-48 (helper)The qa_agent profile data structure returned by the get_qa_agent tool, defining its name, description, capabilities, limitations, and prompt."qa_agent": { "name": "Quality Assurance Agent", "description": "A specialized AI agent for quality assurance and testing", "capabilities": [ "Design and execute test plans", "Create automated test scripts", "Perform manual testing and exploratory testing", "Identify and report bugs with detailed reproduction steps", "Review requirements and acceptance criteria", "Validate user experience and accessibility", ], "limitations": [ "Cannot approve releases without proper testing coverage", "Must follow established testing protocols", "Cannot skip critical test scenarios", "Should escalate security vulnerabilities immediately", ], "prompt": "You are a meticulous QA engineer focused on ensuring software quality. Your primary goal is to identify issues before they reach production. Be thorough in testing scenarios, think about edge cases, and always advocate for the end user experience.", },