Which AI clients can use the M00N Report MCP server?
Any MCP-compatible client, over one of two paths. Claude Desktop, Claude Code and claude.ai use the hosted remote connector: a URL plus a browser consent screen, authenticated with OAuth 2.1 and no key file on disk. Every other client, including Cursor, ChatGPT, Zed, Windsurf and VS Code, uses the @m00nsolutions/mcp-server package from npm over stdio with an MCP key. The remote connector's redirect allowlist is hardcoded to claude.ai and claude.com, so it is a Claude connector specifically. Both paths expose the identical tools, prompts and resources.
Does M00N Report generate test cases with AI?
Your own model generates; M00N Report does not resell you one. suggest_test_cases supplies project-aware scaffolding through pattern matching over your existing templates and folder structure, not an LLM call, and create_test_case persists whatever your assistant writes, turning Markdown into a first-class rich-text case with steps, tags and an optional Jira link.
Can an AI agent delete my test data?
An MCP key carries exactly the permissions of the account it belongs to, so an agent can never exceed its owner's role. Most tools read; the ones that change state are marked, and 9 are flagged destructive so a client can require explicit confirmation before running them. The five delete_ tools, for test cases, collections, releases, folders and executions, archive rather than permanently delete. Every tool call is written to an MCP audit log with a UI in the app, and per-key rate limiting caps a runaway agent.
What is the difference between the MCP server and the ingest API?
They cover opposite directions. The ingest API is how automated results get in: an OpenAPI 3.0.3 specification published at /api/ingest/v2/openapi.json, used by the five official reporters. The MCP server is how test assets get managed: authoring cases, building and running manual executions with per-step results, linking automation to cases, tracking releases, and reading coverage and health. There is no public REST API for test case, execution or release management; that surface is the UI plus MCP only.
Can my own AI agent see quality across my whole portfolio of projects?
Yes, by iterating over the read tools. There is no built-in agent and no shipped portfolio dashboard: your own agent calls list_projects, then run_health_check, get_launches_trends and get_coverage_gaps for each project it can see, and assembles the rollup itself. run_health_check scores one project at a time, so a multi-project view is something the agent builds, not a screen we ship. Nothing in that analysis leaves your MCP connection for a separate AI service, and there are no AI credits to buy.
Does the MCP server work with a self-hosted instance?
Yes. Install @m00nsolutions/mcp-server and point it at your own instance URL with an MCP key issued by that instance, which matters when the reason you self-host is that test data cannot leave your network. Self-hosted gets the identical tools, prompts and resources as the cloud.