README.md
Manage test cases in TestCollab directly from your AI coding assistant.
List, create, and update test cases with filtering, sorting, and pagination support. Streamline your QA workflow with a governance layer that integrates test case management into your development environment.
Tools (3)
list_test_casesList test cases with filtering, sorting, and pagination support.create_test_caseCreate a new test case in a specific project.update_test_caseUpdate an existing test case by its ID.Environment Variables
TESTCOLLAB_API_KEYrequiredAPI key for authenticating with TestCollabTESTCOLLAB_DOMAINrequiredYour TestCollab instance domain (e.g., company.testcollab.com)Configuration
claude_desktop_config.json
{
"mcpServers": {
"testcollab": {
"command": "npx",
"args": [
"-y",
"testcollab-mcp-server"
],
"env": {
"TESTCOLLAB_API_KEY": "your_api_key_here",
"TESTCOLLAB_DOMAIN": "your_domain.testcollab.com"
}
}
}
}Try it
→List the first 10 test cases for project ID 123.
→Create a new test case in project 456 titled 'User Login' with steps to enter credentials and click submit.
→Update test case 789 to change the expected result to 'User is redirected to the dashboard'.
→Show me the most recent test cases created in my TestCollab account.