M00N ReportQuick Start
Documentation/MCP / AI Integration/Quick Start

MCP Quick Start

Connect Claude Desktop, Cursor or any other MCP client to M00N Report in under 5 minutes. Read your results and trends, and let the assistant author test cases, assemble manual executions and link automation to cases - all 60 tools, all scoped to your own permissions.

What is MCP?

Model Context Protocol (MCP) is an open standard that lets AI assistants like Claude, Cursor and Zed securely read from and write to external systems. With M00N Report's MCP integration, you can:

Ask Natural Questions

"What's our test pass rate this week?" or "Which tests are flaky?"

Analyze Trends

Get AI-powered insights on test reliability and performance patterns.

Secure Access

MCP keys inherit your permissions-you only see projects you have access to.

Real-Time Data

Queries run against live data-no stale exports or manual updates.

Author and Plan

create_test_case, update_test_case, create_execution, add_suites_to_execution, link_autotest_to_case - the assistant manages test assets, not just reads them.

Every request runs as you: the MCP key inherits your role, so the assistant only ever sees projects you can see.

Prerequisites

  • Node.js 18+ installed (for npx to work)
  • An MCP client installed - Claude Desktop, Claude Code, Cursor, Zed, Windsurf, Continue or Cline
  • Network access from your machine to the M00N Report API

Setup Steps

1

Create an MCP Key

Log in to M00N Report and navigate to Settings → MCP Keys. Click Create Key and:

  1. Select the user whose permissions the key should inherit
  2. Give the key a descriptive name (e.g., "Claude Desktop - Work Laptop")
  3. Click Create Key
Important: Copy your key immediately-it won't be shown again! The key starts with m00n_mcp_.
2

Add the MCP Server to Your AI Assistant

Add this server entry to your AI assistant's MCP config. The same JSON works for Claude Desktop, Cursor, and any other MCP-compatible client - add it at user or project scope, wherever your tool keeps its MCP servers.

{
  "mcpServers": {
    "m00n": {
      "command": "npx",
      "args": ["-y", "@m00nsolutions/mcp-server"],
      "env": {
        "M00N_API_URL": "https://m00nreport.com",
        "M00N_API_KEY": "m00n_mcp_your_key_here"
      }
    }
  }
}
3

Restart Your AI Assistant

Close and reopen Claude Desktop or Cursor. The MCP server will start automatically when the AI assistant launches.

Tip: Check the AI assistant's MCP/tools panel to verify that "m00n" appears in the list of connected servers.
4

Start Asking Questions!

Try these example prompts:

  • "List my M00N Report projects"
  • "What's the test pass rate for [project name] over the last 30 days?"
  • "Show me the top 10 flaky tests in [project name]"
  • "Which tests are failing most often?"
  • "Draft test cases for the password reset flow and create them under Regression > Auth"
  • "Create a Manual Test Execution for v2.1.0 and add the Smoke and Checkout suites to it"
  • "Link the autotest 'Checkout > completes payment' to test case TC-42"

Listed independently

The server is published where MCP clients and their users look, so you can check what it exposes without taking our word for it. It is also in the official Model Context Protocol registry as io.github.m00nreport/mcp-server, which is an API rather than a browsable page.

  • mcpservers.org - community directory of MCP servers
  • Glama - indexes each server and grades its tool definitions
  • npm - the package itself, versions and install counts

What's Next?

Last updated