Control your entire test suite from Claude. No dashboard switching. No API calls. Just conversation.
Integrate Allure TestOps with Claude using the Model Context Protocol. Launch tests, track execution, get reports—all within your AI assistant. Built for teams. Ready for production.
- Start a test run in seconds — no dashboard navigation
- Get live status updates without leaving Claude
- Automated reports delivered to your chat
- Claude analyzes test results and suggests fixes
- Ask natural questions: "Why are these tests failing?"
- Get insights without manual log parsing
- Deploy once, share with your whole team
- HTTP + auth for secure team access
- Works with Claude Desktop, Claude Web, and custom MCP clients
- 57+ tools + full OpenAPI coverage (600+ endpoints searchable)
- Docker, Kubernetes, Systemd, ngrok support
- Enterprise security: JWT auth, CORS, TLS
Your team lead has already deployed TestOps MCP. Here's how to connect:
Click Settings (bottom left) → Developer tab
Add this to the mcpServers section:
{
"mcpServers": {
"testops": {
"url": "http://your-server.com:3000/sse",
"headers": {
"Authorization": "Bearer your-mcp-auth-token", // optional
"X-Allure-Token": "your-personal-allure-token"
}
}
}
}url— address of the shared MCP server (ask your team lead).Authorization(optional) — theMCP_AUTH_TOKENset on the server. Omit if the server has noMCP_AUTH_TOKENconfigured.X-Allure-Token— your personal Allure API token. All actions in Allure will be done under your account.
Close and reopen Claude.
Ask Claude: "List all projects in Allure"
You should see your TestOps projects! ✅
Setting up a server for your team? → See Installation & Deployment
You: "Run smoke tests for project 1"
Claude: ✓ Launch started (ID: 12345)
↳ 156 tests queued
You: "What's the status?"
Claude: 📊 RUNNING — 89/156 passed
✓ 89 | ✗ 12 | ⚠️ 8 | ⊘ 47
You: "Why did the API tests fail?"
Claude: The auth endpoint returned 401.
Likely cause: token refresh broken.
Suggestion: Check token_expired tests first.
Each team member uses their own API token. → Per-User Setup
One server for the team with a shared token. → Shared Server Setup
Best for: Teams where each person has their own Allure account
-
Download the binary for your OS from Releases
-
Get your Allure API token:
- Log into Allure TestOps (your-testops.com)
- Click your profile icon (top right) or go to Settings
- Select API tokens or Integration tokens
- Click + Create token (or Generate)
- Give it a name like
Claude MCP - Copy the token (it won't be shown again!)
- Store it somewhere safe
-
Add to Claude Desktop config (Settings → Developer → Edit Config):
{
"mcpServers": {
"testops": {
"command": "C:\\Users\\YourName\\Downloads\\testops-mcp-windows-amd64.exe",
"env": {
"ALLURE_BASE_URL": "https://your-testops.com",
"ALLURE_TOKEN": "your-token-here",
"REQUEST_TIMEOUT": "30",
"LOG_LEVEL": "INFO"
}
}
}
}- Restart Claude Desktop and test:
"List all projects in Allure"
Best for: Teams using a single shared Allure account or service account
1. Clone repo and create .env:
# Clone repo
git clone https://github.com/MimoJanra/TestOpsMCP.git
cd TestOpsMCP
# Create .env file (ALLURE_TOKEN is optional - each user provides their own)
cat > .env << EOF
ALLURE_BASE_URL=https://your-testops.com
PORT=3000
LOG_LEVEL=INFO
MCP_AUTH_TOKEN=generate-random-string-here
EOFOptional: If you want a fallback shared token for the server:
# Add to .env (optional)
ALLURE_TOKEN=your-shared-token2. Start with Docker Compose:
# Start server
docker-compose up -d
# Check logs
docker-compose logs -fServer runs on http://localhost:3000
3. Team members connect with their own tokens
Each team member adds to their Claude Desktop config (Settings → Developer → Edit Config):
{
"mcpServers": {
"testops": {
"url": "http://your-server.com:3000/sse",
"headers": {
"Authorization": "Bearer your-mcp-auth-token", // optional
"X-Allure-Token": "your-personal-allure-token"
}
}
}
}Authorization(optional) — theMCP_AUTH_TOKENset on the server. Omit if the server has noMCP_AUTH_TOKENconfigured.X-Allure-Token— each person's own Allure API token. Actions in Allure are performed under that account.
Each person needs to:
- Get their personal Allure API token (Settings → API tokens in Allure TestOps)
- Add it to their Claude Desktop config as
X-Allure-Token - Restart Claude Desktop
All actions will be done from their personal Allure account! ✅
If you prefer running without Docker:
# Get binary for your OS
./testops-mcp-linux-amd64 --httpFor production deployment (Kubernetes, Systemd, reverse proxy, HTTPS, monitoring):
→ See DEPLOYMENT.md
Docker image available: ghcr.io/MimoJanra/TestOpsMCP:latest
search_testops_operations— Search for any API operation by keyword- Example:
"list projects","create launch","get test results" - Covers all 600+ TestOps endpoints
- Example:
execute_testops_operation— Execute any discovered operationconfigure_allure_token— Set token in chat (if not in config)
run_allure_launch • get_launch_status • get_launch_report • list_launches • close_launch • reopen_launch • copy_launch • merge_launches
list_test_results • get_test_result • assign_test_result • mute_test_result • bulk_assign_test_results • resolve_test_result • unmute_test_result
create_test_case • update_test_case • get_test_case • clone_test_case • restore_test_case • create_test_case_step • update_test_case_step • delete_test_case_step • run_test_case
get_test_case_members • add_test_case_members • remove_test_case_members • get_test_case_external_links • add_test_case_external_link
add_test_case_defect • remove_test_case_defect • get_test_case_defects • get_launch_defects • get_project_stats • get_launch_trend_analytics • get_launch_duration_analytics • get_test_success_rate • get_launch_environment
→ Full reference: API.md
"Run regression tests for Sprint 22"
→ Claude starts launch, tracks progress, reports results
→ Suggests which tests to debug first
"Why did the auth tests fail?"
→ Claude analyzes logs, identifies root cause
→ Links to related GitHub/Jira issues
"What's the status of our nightly suite?"
→ Get daily reports, track trends
→ Alerts if pass rate drops
"Assign the failing UI tests to @Sarah"
→ Claude bulk-assigns, creates defect tickets
→ Notifies team members
Just run the binary — no special setup needed.
Use Docker Compose for easy team deployment:
docker-compose up -dOr deploy with:
- Docker — Container image at
ghcr.io/MimoJanra/TestOpsMCP - Kubernetes — Enterprise-scale with auto-scaling
- Systemd — Native Linux integration
- ngrok — Quick HTTPS tunneling for testing
→ Full guide: DEPLOYMENT.md
| Variable | Required | Default | Notes |
|---|---|---|---|
ALLURE_BASE_URL |
✅ Yes | — | Your Allure TestOps URL |
ALLURE_TOKEN |
❓ Optional | — | Required for shared servers, optional for per-user |
REQUEST_TIMEOUT |
No | 30s | HTTP timeout (1–600 seconds) |
PORT |
No | 3000 | Server port (HTTP mode only) |
LOG_LEVEL |
No | INFO | DEBUG/INFO/WARN/ERROR |
MCP_AUTH_TOKEN |
No | — | Bearer auth token for HTTP mode (recommended for production) |
CORS_ALLOWED_ORIGIN |
No | * | CORS origin (set to https://claude.ai for Claude.ai) |
- No network exposure
- Safe for personal use
- Default mode for Claude Desktop
Always set MCP_AUTH_TOKEN in production:
- Use HTTPS (or ngrok) to encrypt credentials
- Set concrete CORS origin (not
*) - Place behind reverse proxy (nginx, Caddy)
- Never commit
.envto git - Rotate credentials regularly
Example production setup (nginx + HTTPS): → See Security notes in DEPLOYMENT.md
| Guide | For | Time |
|---|---|---|
| Quick Start | First-time users | 2 min |
| Installation Options | Per-user or shared setup | 5 min |
| DEPLOYMENT.md | Production, Docker, K8s, reverse proxy | 15 min |
| API.md | Tool reference & examples | Reference |
| Feature | TestOps MCP | Dashboard | Manual API |
|---|---|---|---|
| Launch from chat | ✅ | ❌ | ❌ |
| Real-time updates | ✅ | ||
| AI analysis | ✅ Claude | ❌ | ❌ |
| Full API coverage | ✅ 600+ endpoints | ✅ | |
| Team deployment | ✅ Built-in | ❌ | |
| Production-ready | ✅ | ||
| Time to results | 3 min | 15+ min | 10+ min |
| Context switches | 0 | 4+ | 2+ |
# Clone
git clone https://github.com/MimoJanra/TestOpsMCP.git
cd TestOpsMCP
# Build
make build
# Binary at: ./bin/server.exe (Windows) or ./bin/server (Unix)Requirements:
- Go 1.26+ — Download
make— Usually pre-installed on macOS/Linux
Development commands:
make build # Compile
make run # Run in stdio mode
make run-http # Run in HTTP mode on :3000
make test # Run tests
make lint # Check quality
make check # test + lintLove this project? Help us make it better!
- Fork the repo
- Create a feature branch:
git checkout -b feature/my-feature - Make changes and test:
make check - Push and open a PR
Ways to contribute:
- 🐛 Fix bugs
- ✨ Add features
- 📚 Improve docs
- 🤔 Report issues
- 💡 Suggest improvements
See CONTRIBUTING.md for details.
Questions? Open an issue or discussion
Found a bug? Report it
Have an idea? Share it
Security issue? Email: security@testopsmcp.dev (don't open public issue)
|
Download binary → 2 minutes to running. |
See DEPLOYMENT.md → Docker, K8s, and more. |
Made with ❤️ by Artem Alekseev
Apache License 2.0 — Free to use, modify, and distribute.