{
  "$schema": "https://modelcontextprotocol.io/schemas/server-card.json",
  "name": "brante-dev-agent-server",
  "title": "Brante Dev Solutions MCP Server",
  "description": "Exposes website speed diagnostics (WPO), WordPress security hardening, and technical scoping tools for AI agents.",
  "version": "1.0.0",
  "serverUrl": "https://brante.dev/api/mcp",
  "serverInfo": {
    "name": "brante-dev-agent-server",
    "title": "Brante Dev Solutions MCP Server",
    "description": "Exposes website speed diagnostics (WPO), WordPress security hardening, and technical scoping tools for AI agents.",
    "version": "1.0.0"
  },
  "transport": {
    "type": "sse",
    "endpoint": "https://brante.dev/api/mcp/sse"
  },
  "transports": [
    {
      "type": "sse",
      "endpoint": "https://brante.dev/api/mcp/sse"
    },
    {
      "type": "http",
      "endpoint": "https://brante.dev/api/mcp"
    }
  ],
  "capabilities": {
    "tools": {
      "listChanged": false
    },
    "resources": {
      "subscribe": false,
      "listChanged": false
    },
    "prompts": {
      "listChanged": false
    }
  },
  "resources": [
    {
      "uri": "https://brante.dev/llms.txt",
      "name": "LLMs Text Index",
      "mimeType": "text/markdown",
      "description": "Canonical LLM Markdown index with service offering, rates, and profile."
    },
    {
      "uri": "https://brante.dev/openapi.json",
      "name": "OpenAPI Specification",
      "mimeType": "application/json",
      "description": "OpenAPI 3.1 schema for public API endpoints and diagnostic sandbox."
    },
    {
      "uri": "https://brante.dev/precios",
      "name": "Tarifas y Precios de Servicios",
      "mimeType": "text/markdown",
      "description": "Transparent pricing table for PyME, Agency, and Corporate tiers."
    },
    {
      "uri": "https://brante.dev/agents.md",
      "name": "Agent Integration Guide",
      "mimeType": "text/markdown",
      "description": "Decision matrix, protocols, and integration guidelines for autonomous AI agents."
    }
  ],
  "tools": [
    {
      "name": "wpo_diagnostic",
      "description": "Evaluates website Core Web Vitals (LCP, CLS, INP) and generates technical WPO optimization recommendations.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "url": {
            "type": "string",
            "format": "uri",
            "description": "Target website URL to analyze"
          }
        },
        "required": ["url"]
      }
    },
    {
      "name": "project_scoper",
      "description": "Calculates project budget, technical scope, and timeline for WordPress, Astro, and headless web development.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "serviceType": {
            "type": "string",
            "enum": ["speed_optimization", "security_audit", "maintenance", "custom_development"],
            "description": "Type of service required"
          },
          "profile": {
            "type": "string",
            "enum": ["pyme", "agency", "corporate"],
            "description": "Target client operational profile"
          }
        },
        "required": ["serviceType", "profile"]
      }
    },
    {
      "name": "health_check",
      "description": "Checks edge gateway operational readiness and server status.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    }
  ]
}
