From pw
Connects to TestRail API for test case management, runs, results, and reporting. Likely Playwright integration. Runs locally; requires TestRail URL, user, and API key.
npx claudepluginhub alirezarezvani/claude-skills --plugin pwAdd to your .mcp.json:
{
"mcpServers": {
"pw-testrail": {
"command": "npx",
"args": [
"tsx",
"${CLAUDE_PLUGIN_ROOT}/integrations/testrail-mcp/src/index.ts"
],
"env": {
"TESTRAIL_URL": "${TESTRAIL_URL}",
"TESTRAIL_USER": "${TESTRAIL_USER}",
"TESTRAIL_API_KEY": "${TESTRAIL_API_KEY}"
}
}
}
}Replace placeholder values for: TESTRAIL_API_KEY
This MCP server needs API keys or credentials. Configure them in your environment before use.
This server has elevated permissions. Review the source code before enabling.
npxTESTRAIL_URL=${TESTRAIL_URL}TESTRAIL_USER=${TESTRAIL_USER}TESTRAIL_API_KEY=${TESTRAIL_API_KEY}