Skip to content
VS Code

M00N Report for VS Code

io.github.m00nreport/mcp-server

Test management over MCP: author cases, run manual executions, cut releases, read health

client:VS Code transport:stdio runtime:npm

Install M00N Report in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "m00n-api-url",
      "description": "M00N_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "m00n-api-key",
      "description": "M00N_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "m00n-debug",
      "description": "M00N_DEBUG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "m00n-timeout-ms",
      "description": "M00N_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "m00n-insecure-ssl",
      "description": "M00N_INSECURE_SSL",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@m00nsolutions/mcp-server"
      ],
      "env": {
        "M00N_API_URL": "${input:m00n-api-url}",
        "M00N_API_KEY": "${input:m00n-api-key}",
        "M00N_DEBUG": "${input:m00n-debug}",
        "M00N_TIMEOUT_MS": "${input:m00n-timeout-ms}",
        "M00N_INSECURE_SSL": "${input:m00n-insecure-ssl}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

M00N Report in other clients