insearcher/kiwi-tcms-mcp
3.3
If you are the rightful owner of kiwi-tcms-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
Kiwi TCMS MCP Server integrates Claude Desktop with the Kiwi TCMS test management system, providing a seamless interface for managing test cases, plans, and executions.
Tools
5
Resources
0
Prompts
0
Kiwi TCMS MCP Server
MCP server for integrating Claude Desktop with Kiwi TCMS test management system.
Installation
pip install kiwi-tcms-mcp
Or install from source:
git clone https://github.com/yourusername/kiwi-tcms-mcp.git
cd kiwi-tcms-mcp
pip install -e .
Configuration
Add to Claude Desktop MCP settings:
{
"mcpServers": {
"kiwi-tcms": {
"type": "stdio",
"command": "python",
"args": ["-m", "kiwi_mcp"],
"env": {
"KIWI_TCMS_URL": "https://your-kiwi-instance.com"
}
}
}
}
Usage
First authenticate:
authenticate with username "your_username" and password "your_password"
Then use available tools:
list all test plans
create test case "Login test" in product 1
mark test execution 123 as passed
Available Tools
- Authentication:
authenticate
- Products:
list_products
,get_product
- Test Plans:
create_test_plan
,update_test_plan
,list_test_plans
- Test Cases:
create_test_case
,update_test_case
,list_test_cases
- Test Runs:
create_test_run
,add_case_to_run
,list_test_runs
- Test Execution:
mark_test_passed
,mark_test_failed
,mark_test_blocked
And 30+ more tools for complete test management.
Development
# Install in development mode
pip install -e .
# Run tests
pytest
# Run with coverage
pytest --cov=kiwi_mcp
License
MIT