{
  "name": "zoth-netlify-ax-expert",
  "version": "3.0.0",
  "description": "Sovereign Netlify Build Auditor, Diagnoser, and Autonomous Self-Healing MCP Server",
  "tools": [
    {
      "name": "netlify_audit",
      "description": "Performs full 14-point AST audit of Netlify build configuration, redirects, and assets.",
      "parameters": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "netlify_self_heal",
      "description": "Autonomously heals case mismatches, circular redirects, missing SPA fallbacks, and security headers.",
      "parameters": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "netlify_diagnose_log",
      "description": "Diagnoses raw build failure log text and generates deterministic code patches.",
      "parameters": {
        "type": "object",
        "properties": {
          "log_text": {
            "type": "string",
            "description": "Raw terminal deploy log"
          }
        }
      },
      "required": [
        "log_text"
      ]
    },
    {
      "name": "netlify_generate_config",
      "description": "Generates production-grade netlify.toml for a specific framework (static, nextjs, vite_react, astro, svelte, nuxt).",
      "parameters": {
        "type": "object",
        "properties": {
          "framework": {
            "type": "string",
            "enum": [
              "static",
              "nextjs",
              "vite_react",
              "astro",
              "svelte",
              "nuxt"
            ]
          }
        }
      },
      "required": [
        "framework"
      ]
    }
  ]
}