{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$ref": "#/definitions/SetupMcpResult",
  "definitions": {
    "SetupMcpResult": {
      "type": "object",
      "properties": {
        "mcpFile": {
          "type": "string"
        },
        "serversAdded": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "cwd": {
          "type": "string"
        },
        "writes": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "target": {
                "type": "string"
              },
              "status": {
                "type": "string"
              },
              "path": {
                "type": "string"
              },
              "error": {
                "type": "string"
              }
            },
            "required": ["target", "status"],
            "additionalProperties": false
          }
        }
      },
      "required": ["mcpFile", "serversAdded", "cwd"],
      "additionalProperties": false
    }
  }
}
