TCSoftInc/testcollab-mcp-server
MCP server for TestCollab test management. Lets AI coding assistants (Claude Code, Cursor, Windsurf, Codex) create, update, and query test cases, create test plans, and suite hierarchy. Connect your AI workflow to your QA process.
Platform-specific configuration:
{
"mcpServers": {
"testcollab-mcp-server": {
"command": "npx",
"args": [
"-y",
"testcollab-mcp-server"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
Connect your AI coding assistant to TestCollab — manage test cases, test plans, and suites directly from Claude, Cursor, Windsurf, Codex, or any MCP-compatible client.
Log in to TestCollab → My Profile Settings → API Token tab → Generate new API token.
Claude Code — add to .mcp.json in your project root:
{
"mcpServers": {
"testcollab": {
"command": "npx",
"args": ["-y", "@testcollab/mcp-server"],
"env": {
"TC_API_TOKEN": "your-api-token",
"TC_API_URL": "https://api.testcollab.io",
"TC_DEFAULT_PROJECT": "16"
}
}
}
}Claude Desktop — add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"testcollab": {
"command": "npx",
"args": ["-y", "@testcollab/mcp-server"],
"env": {
"TC_API_TOKEN": "your-api-token",
"TC_API_URL": "https://api.testcollab.io",
"TC_DEFAULT_PROJECT": "16"
}
}
}
}Cursor — add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"testcollab": {
"command": "npx",
"args": ["-y", "@testcollab/mcp-server"],
"env": {
"TC_API_TOKEN": "your-api-token",
"TC_API_URL": "https://api.testcollab.io",
"TC_DEFAULT_PROJECT": "16"
}
}
}
}TC_API_TOKEN=your-token npm startList test cases from a project with optional filtering.
Parameters: | Name | Type | Required | Description | |------|------|----------|-------------| | project_id | number | No* | Project ID (*required if TC_DEFAULT_PROJECT not set) | | suite | number\|string | No | Filter by suite ID or title | | filter | object | No | Filter conditions | | sort | array | No | Sort specification | | `limi
Loading reviews...