Catalog
io.github.uarlouski/testrail-mcp-server
Officialby uarlouski · TypeScript
Model Context Protocol (MCP) server for TestRail platform, enabling LLMs to manage test artifacts.
Enables LLMs to manage test cases and artifacts in TestRail platform.
Topics
aiclaudecursorllmmcpmodel-context-protocolqatest-automationtesting-toolstestrail
README not available yet.
Install
Configuration
Environment variables
TESTRAIL_INSTANCE_URLrequiredBase URL of your TestRail instance (e.g. https://example.testrail.io)
TESTRAIL_USERNAMErequiredEmail address used to authenticate with TestRail
TESTRAIL_API_KEYrequiredsecretAPI key for authenticating with the TestRail API
TESTRAIL_ENABLE_SHARED_STEPSEnable shared steps management
claude_desktop_config.json
{
"mcpServers": {
"testrail-mcp-server": {
"command": "npx",
"args": [
"-y",
"@uarlouski/testrail-mcp-server@2.0.0"
],
"env": {
"TESTRAIL_INSTANCE_URL": "<YOUR_TESTRAIL_INSTANCE_URL>",
"TESTRAIL_USERNAME": "<YOUR_TESTRAIL_USERNAME>",
"TESTRAIL_API_KEY": "<YOUR_TESTRAIL_API_KEY>",
"TESTRAIL_ENABLE_SHARED_STEPS": "<YOUR_TESTRAIL_ENABLE_SHARED_STEPS>"
}
}
}
}