Skip to content

TCSoftInc/testcollab-claude-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

TestCollab Plugin for Claude Code

Connect Claude Code to your TestCollab projects. Create, list, filter, and update test cases directly from your terminal without switching to the browser.

Installation

First, add the TestCollab marketplace to Claude Code:

/plugin marketplace add TCSoftInc/testcollab-claude-plugin

Then install the plugin:

/plugin install testcollab@testcollab-claude-plugin

Setup

After installing, configure your API token:

  1. Go to your TestCollab profile and generate an API token
  2. Open your Claude Code settings file at ~/.claude/settings.json and add the token under the plugin's environment:
{
  "env": {
    "TC_API_TOKEN": "your-api-token-here",
    "TC_DEFAULT_PROJECT": "12"
  }
}
  • TC_API_TOKEN (required) - your API token from step 1
  • TC_DEFAULT_PROJECT (optional) - your project ID, so you don't have to specify it on every command. You can find this in your TestCollab project URL.

EU Region Users

If your TestCollab account is hosted in the EU region, add TC_API_URL to point to the EU API server:

{
  "env": {
    "TC_API_TOKEN": "your-api-token-here",
    "TC_DEFAULT_PROJECT": "12",
    "TC_API_URL": "https://api-eu.testcollab.io"
  }
}

US region users don't need to set this - it defaults to https://api.testcollab.io.

Available Tools

Tool Description
get_project_context Fetch project metadata - suites, tags, custom fields, requirements
list_test_cases List test cases with advanced filtering, sorting, and pagination
create_test_case Create a new test case with steps, tags, and custom fields
update_test_case Update an existing test case (partial updates supported)

Example Use Cases

Create test cases while coding: Ask Claude to generate test cases for the feature you're implementing. It will create them directly in TestCollab with proper steps, priorities, and suite assignments.

Check test coverage before a PR: Ask Claude to list test cases for a specific suite or requirement to verify coverage before submitting your changes.

Update tests after refactoring: After changing code, ask Claude to update the related test cases to reflect the new behavior.

Configuration

Variable Required Description
TC_API_TOKEN Yes API token from your TestCollab profile
TC_DEFAULT_PROJECT No Default project ID (avoids specifying it each time)

Links

About

Claude Code plugin for TestCollab - connect your test management workflows directly to Claude Code. Create, list, filter, and update test cases without leaving your terminal.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors