M00N ReportGetting Started
Documentation/Getting Started

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

Test Case Repository

Author manual and automated cases in a folder and suite tree, with steps, attachments, tags, dependencies and custom fields.

Manual Executions

Plan a run with assignees, environments and dates, record per-step results, then roll it into a release.

Real-Time Automated Results

Five official reporters plus an OpenAPI ingest contract stream results the moment each test completes.

AI Over MCP

A 50+ tool MCP server lets AI assistants author cases, build executions and check coverage under your own roles.

How It Works

Test Cases

Author manual and automated cases in the repository

Executions & CI

Run them manually, or stream them from your pipeline

Results & Releases

Manual and automated evidence rolls into release readiness

Coverage

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

1

Create Your Account

Sign up for a free account at m00nreport.com. No payment required - get started in seconds.

2

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.

Tip: Store your API key as an environment variable (M00N_API_KEY) - never commit it to version control.
3

Choose Your Framework

Select your test runner to see the installation instructions:

JavaScript / TypeScript
Java
Python
.NET
4

Install the Reporter

npm install @m00nsolutions/playwright-reporter
5

Configure 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,
    }]
  ],
});
6

Run Your Tests

# Run your tests - results stream in real-time!
npx playwright test

That'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
Last updated