get_qa_agent
Retrieve details about the Quality Assurance Agent to access QA functionality within the MCP Agents server.
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-83 (handler)The handler function for the 'get_qa_agent' tool, registered via @mcp.tool decorator. It returns the predefined QA agent profile dictionary containing name, description, capabilities, limitations, and prompt.@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 used by the get_qa_agent tool handler."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.", },