MCP-First Testing Execution Infrastructure
OpenTester is a testing execution engine designed for AI coding tools (Claude Code, Cursor, OpenCode, etc.). It provides a unified DSL format and MCP interface, enabling Agents to generate, execute, and manage test cases, achieving an automated "code-test-fix" workflow.
βββββββββββββββββββββββββββββββββββββββββββ
β AI Agent (Claude Code / Cursor / ...) β
β ββ Generate DSL test cases β
β ββ Decide testing strategies β
β ββ Analyze failure reasons β
βββββββββββββββββββββββββββββββββββββββββββ€
β OpenTester (MCP Server) β
β ββ Validate DSL syntax β
β ββ Execute tests (CLI/Web) β
β ββ Store cases/projects β
β ββ Return structured results β
βββββββββββββββββββββββββββββββββββββββββββ€
β Web UI (Auxiliary Observation Panel) β
β ββ View execution progress β
β ββ Debug cases (create/edit) β
β ββ View history reports β
βββββββββββββββββββββββββββββββββββββββββββ
Design Principles:
- Agent Intelligence: Test generation and failure analysis are handled by the Agent
- OpenTester Execution: Focuses on DSL validation and test execution
- MCP-First: All core features exposed through MCP
- Web UI Auxiliary: Visual monitoring and debugging, not required
pip install opentester
# Or with uv
uv pip install opentester# Clone repository
git clone https://github.com/kznr02/OpenTester.git
cd OpenTester
# Install backend
uv pip install ./backend
# Install frontend dependencies (optional)
cd frontend
npm installcd backend
uv run opentester start# Start both FastAPI + MCP (foreground mode with prefixed logs)
opentester start
# Daemon mode (detached background with log files)
opentester start --daemon
# Start only API
opentester start --api
# Start only MCP
opentester start --mcp
# Custom ports
opentester start --api-port 8080 --mcp-port 8081
# Check status
opentester status
# Stop services
opentester stop
# Environment check
opentester doctorForeground Mode Log Output:
[API] INFO: Started server process [12345]
[API] INFO: Waiting for application startup.
[MCP] INFO: Started MCP server on port 8001
[API] INFO: Application startup complete.
Add MCP configuration in .claude/settings.json:
{
"mcpServers": {
"opentester": {
"url": "http://localhost:8001/mcp"
}
}
}Note: Current runtime transport is Streamable HTTP.
Conversation with Claude Code:
You: Help me test the login functionality
Claude: I'll create tests for the login feature...
[Generate DSL test case]
[Call MCP: validateDSL] β Validation passed
[Call MCP: createProject] β Project created
[Call MCP: saveCase] β Case saved
[Call MCP: runCase]
Executing...
β All passed
OpenTester/
βββ backend/ # FastAPI + Python
β βββ opentester/
β β βββ api/ # REST API (for Web UI)
β β βββ core/ # Execution engine, storage
β β βββ models/ # Pydantic models (DSL, Project)
β β βββ mcp/ # MCP Server (core)
β βββ pyproject.toml
βββ frontend/ # React + TypeScript + Vite
β βββ src/ # Web UI (observation panel)
βββ docs/
β βββ SKILL_PROMPT.md # Agent Skill Prompt template
β βββ DSL_SPEC.md # DSL syntax specification
β βββ MCP.md # MCP interface documentation
βββ README.md # This document
βββ LICENSE # MIT License
After Agent generates DSL, OpenTester validates syntax correctness:
version: "1.0"
meta:
name: "Login Test"
steps:
- action: exec
command: "curl http://localhost:3000/login"
- action: assert
assertion:
type: stdout_contains
expected: "token"Supports execution targets:
- CLI: subprocess command execution (implemented)
- WEB: Playwright-based browser automation (implemented)
- GUI: experimental executor routing (disabled by default)
- TUI: experimental executor routing (disabled by default)
- Web actions are executed by
WebExecutor(Playwright) - Browser console, page errors, and failed requests are normalized into
diagnostic_eventsfor each execution step - Supports AI-assisted locator flow via
ai_locatorin DSL steps - Execution can pause in
paused_waiting_for_aistatus and wait for AI selector submission - Supports DOM snapshot + optional screenshot capture for AI analysis
- Web UI and REST clients can retrieve persisted browser diagnostics from the execution diagnostics endpoints for post-run investigation
- Projects stored in XDG data directory (
~/.local/share/opentester/on Linux,~/Library/Application Support/opentester/on macOS,%LOCALAPPDATA%\opentester\on Windows) - PRD content persisted with projects (provided by Agent)
- Test case version management
- Template library for reusable DSL patterns
- WebSocket real-time execution progress push
- Web UI visual display
- Execution history traceability
| Tool | Description |
|---|---|
list_projects |
List all test projects |
get_project |
Get project details (including cases) |
create_project |
Create project |
delete_project |
Delete project |
validate_dsl |
Validate DSL syntax |
save_case |
Save test case |
delete_case |
Delete test case |
run_case |
Execute single case |
run_project |
Execute project cases |
stop_execution |
Stop execution |
get_execution_status |
Get execution status |
get_execution_log |
Get detailed logs |
request_dom_analysis |
Get DOM snapshot for paused AI step |
submit_ai_selector |
Submit selector to resume paused execution |
list_paused_executions |
List executions waiting for AI analysis |
list_templates |
List templates |
create_template |
Create DSL template |
instantiate_template |
Create case from template |
See MCP Interface Documentation for details.
See documentation for detailed guides:
- Architecture - System architecture and design decisions
- MCP Interface - MCP tool specifications
- DSL Specification - YAML-based test definition language
- Development Guide - Development setup and contribution
Agents using OpenTester need to include DSL generation specifications. Refer to SKILL_PROMPT.md
YAML-based test definition language. See DSL_SPEC.md for details.
See ARCHITECTURE.md for system architecture, design principles, and architectural decisions.
Developers refer to DEVELOPMENT.md
Auxiliary features:
- View project list and details
- Edit DSL cases (Monaco editor)
- Monitor execution progress
- View history reports
Note: Web UI is not the main entry point. All core features are provided through MCP.
- FastAPI (Web UI / REST API): http://localhost:8000
- MCP Server: http://localhost:8001/mcp
- API Docs: http://localhost:8000/docs
- Web UI Dev Server: http://localhost:5173
OpenTester follows the XDG Base Directory Specification:
- Projects:
<XDG_DATA_HOME>/opentester/projects/{project_id}.json- Linux:
~/.local/share/opentester/projects/ - macOS:
~/Library/Application Support/opentester/projects/ - Windows:
%LOCALAPPDATA%\opentester\projects\
- Linux:
- Executions:
<XDG_DATA_HOME>/opentester/executions/ - Templates:
<XDG_DATA_HOME>/opentester/templates/ - Logs:
<XDG_DATA_HOME>/opentester/logs/daemon/(daemon mode service logs) - Config:
~/.config/opentester/(or$XDG_CONFIG_HOME/opentester/)
Refer to DISTRIBUTION.md for:
- PyPI publishing
- PyInstaller packaging
- Docker images
- System package managers
Quick build executable:
cd backend
pip install pyinstaller
pyinstaller opentester.spec
# Output: dist/opentester.exe (Windows) or dist/opentester (Linux/Mac)We welcome contributions! Please see CONTRIBUTING.md for guidelines.
OpenTester - MCP-First Testing Execution Platform