Autonomous AI browser testing. Give Testorax a URL and it crawls your app, generates test scenarios, runs them in real browsers, and returns a bug report with screenshots. No test code to write. Works with any deployed web app.
Overview
It's a markdown editor — this is the full documentation page for your listing. Paste this:
# Testorax — AI Browser Testing
Testorax is your testing buddy. Give it the URL of any deployed web app and it crawls it, generates test scenarios using Orax AI, runs them in real Chromium browsers, and returns a structured bug report with per-step screenshots.
**No test code to write. No SDK to install. No CI config required.**
## What it does
- Crawls your app and discovers pages automatically
- Generates realistic user scenarios (login, checkout, forms, navigation)
- Executes them in real browsers with full diagnostic capture
- Returns a bug report with screenshots, error messages, and fix suggestions
- Pauses and asks you if it needs login credentials or gets stuck
## Setup
**Step 1 — Get your credentials**
1. Sign up at [testorax.com](https://testorax.com)
2. Go to `/account/api-key` to generate your API key (`ttx_...`)
**Step 2 — Configure the MCP server**
Add to your MCP client config:
```json
{
"mcpServers": {
"testorax": {
"url": "https://testorax.com/mcp",
"headers": {
"X-Testorax-Email": "your@email.com",
"Authorization": "Bearer ttx_your_api_key"
}
}
}
}
Ready-made prompts
Copy these directly into your agent:
Run a test:
Run a full test on https://myapp.com using Testorax and give me the bug report
Quick scan:
Do a quick Testorax scan on https://myapp.com and summarize the findings
Debug a failure:
Use Testorax failure_context to explain why scenario [ID] failed in run [ID]
Retry failures:
Retry only the failed scenarios from Testorax run [ID]
Run a saved suite:
Run my Testorax saved suite [suite-name]
Available Tools
| Tool | Description |
|---|---|
create_bypass_run | Create a run with custom scenarios (requires API key) |
run_status | Get live status of a run |
get_report | Fetch the full bug report |
run_summary_md | Get a markdown summary optimized for LLM reading |
failure_context | Full diagnostic context for a failed scenario |
run_timeline | Chronological state timeline for a run |
regressions | Find scenarios that just broke after a clean streak |
retry_failed | Re-run only failed scenarios from a previous run |
cancel_run | Cancel a stuck or unwanted run |
list_runs | List recent runs |
validate_scenarios | Dry-run validate scenario JSON before posting |
get_scenario_schema | Fetch the canonical scenario JSON schema |
list_actions | List every supported step action with examples |
get_run_states | Run state diagram and valid transitions |
list_suites | List saved test suites |
run_suite | Trigger a saved suite |
list_variables | List saved variables |
set_variable | Save a variable for use in scenarios as ${NAME} |
list_app_groups | List multi-URL test bundles |
run_app_group | Trigger all URLs in an app group simultaneously |
list_credits | List active promo codes and credits |
get_dashboard | Account KPIs: pass rate, spend, top failures |
list_messages | Check for replies from the Testorax agent |
send_message | Ask the human a question during a run |
list_repos | List connected GitHub repos |
install_github_app | Get the GitHub App install URL |
Links
Server Config
{
"mcpServers": {
"testorax": {
"url": "https://testorax.com/mcp",
"headers": {
"X-Testorax-Email": "${TESTORAX_EMAIL}",
"Authorization": "Bearer ${TESTORAX_API_KEY}"
}
}
}
}