MCP Server
Connect Qualigate to Claude and other AI tools using the Model Context Protocol.
What is MCP?
MCP (Model Context Protocol) lets AI assistants like Claude interact with external tools and data sources. The Qualigate MCP server exposes your test suite as tools, allowing Claude to list projects, trigger tests, and retrieve results—all through natural language conversation.
Installation
Add the Qualigate MCP server to your Claude configuration. Choose the option that matches your setup:
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"qualigate": {
"command": "npx",
"args": ["qualigate-mcp"],
"env": {
"QUALIGATE_API_KEY": "qg_your_api_key_here"
}
}
}
}Claude Code
Edit ~/.claude/settings.json:
{
"mcpServers": {
"qualigate": {
"command": "npx",
"args": ["qualigate-mcp"],
"env": {
"QUALIGATE_API_KEY": "qg_your_api_key_here"
}
}
}
}Available Tools
list_projects
List all your projects in Qualigate.
list_test_cases
List test cases for a specific project.
trigger_test
Trigger a test run for a specific test case or all tests in a project.
get_test_run
Get detailed information about a specific test run.
get_results
Get aggregated results from one or multiple test runs.
Usage Examples
Once the MCP server is configured, you can ask Claude to perform test operations naturally:
Getting Your API Key
To use the Qualigate MCP server, you'll need an API key:
- Sign in to Qualigate
- Go to Settings → API Keys
- Click "Create API Key"
- Copy your key and add it to the configuration as
QUALIGATE_API_KEY
Keep your API key secret. Never commit it to version control or share it publicly.
Need help? Check out the full documentation or contact support at support@qualigate.app