MCP Packs
QA/Test Engineer Pack
Automate checks across APIs and UI with MCP servers for testing.
QA/Test Engineer Pack
Automate testing workflows across APIs and UI. Connect test runners, API testing tools, and issue trackers to streamline quality assurance.
Recommended Servers
| Server | Purpose |
|---|---|
| Postman MCP | Run test suites against environments |
| Playwright MCP | Trigger UI tests and inspect failures |
| GitHub MCP | File issues for failing checks with context |
| Linear MCP | Track bugs and test-related issues |
Example Configuration
{
"mcpServers": {
"postman": {
"command": "npx",
"args": ["-y", "@postman/mcp-server"],
"env": { "POSTMAN_API_KEY": "${POSTMAN_API_KEY}" }
},
"playwright": {
"command": "npx",
"args": ["-y", "@playwright/mcp-server"]
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": { "GITHUB_TOKEN": "${GITHUB_TOKEN}" }
}
}
}Common Workflows
- Run API tests, analyze failures, and create GitHub issues with context
- Trigger E2E tests, capture screenshots of failures
- Track test coverage and quality metrics across sprints
Safety First
Use test/staging environments for automated testing. Avoid running destructive tests against production. Protect test credentials and API keys.