Getting Started
M00N Report is an AI-native test management platform. Author test cases, run manual executions, track releases, stream automated results, and let AI agents manage everything over MCP. This page covers one slice of that: getting an automated run streaming in under 5 minutes. If you are setting up the case repository first, start with Test Cases instead.
What M00N Report Does
Author manual and automated cases in a folder and suite tree, with steps, attachments, tags, dependencies and custom fields.
Plan a run with assignees, environments and dates, record per-step results, then roll it into a release.
Five official reporters plus an OpenAPI ingest contract stream results the moment each test completes.
A 50+ tool MCP server lets AI assistants author cases, build executions and check coverage under your own roles.
How It Works
Author manual and automated cases in the repository
Run them manually, or stream them from your pipeline
Manual and automated evidence rolls into release readiness
Gaps surface in both directions, and become the next cases
The loop closes: coverage gaps become the next test cases, written by you or by an AI assistant over MCP, and the cycle starts again. The steps below cover the automation leg - a reporter drops into your existing test runner and streams results as they happen, with no agents and no infrastructure to run.
Quick Start
Create Your Account
Sign up for a free account at m00nreport.com. No payment required - get started in seconds.
Create a Project & Get Your API Key
After signing in, create a new project. Navigate to Project Settings → API Keys and copy your unique API key. This key identifies your project and enables secure streaming.
M00N_API_KEY) - never commit it to version control.Choose Your Framework
Select your test runner to see the installation instructions:
Install the Reporter
npm install @m00nsolutions/playwright-reporterConfigure Your Tests
Add the M00N reporter to your test configuration:
// playwright.config.ts
import { defineConfig } from '@playwright/test';
export default defineConfig({
reporter: [
['list'],
['@m00nsolutions/playwright-reporter', {
serverUrl: 'https://m00nreport.com',
apiKey: process.env.M00N_API_KEY,
}]
],
});Run Your Tests
# Run your tests - results stream in real-time!
npx playwright testThat's it! Open M00N Report in your browser to watch results stream in live.
What's Next?
- Test Cases - Build the repository that manual runs and automation both point at
- Manual Test Executions - Plan a run with assignees, environments and per-step results
- Releases - Roll manual and automated evidence into one readiness signal
- AI and MCP - Let an AI assistant author cases and build executions for you
- Playwright Reporter Docs - Full configuration options and advanced features