{
  "$schema": "https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/main/schema/server-card-v1.json",
  "serverInfo": {
    "name": "sivec-dealership-mcp",
    "version": "2.22.0",
    "title": "SIVEC Automotive MCP Server",
    "description": "Model Context Protocol server para operaciones de concesionarias: inventario de autos/motos, peritajes 360°, facturación ARCA SOAP y CRM Round-Robin."
  },
  "endpoint": "https://app.sivec.com.ar/mcp",
  "transport": {
    "type": "streamable-http",
    "url": "https://app.sivec.com.ar/mcp"
  },
  "capabilities": {
    "tools": {
      "listChanged": false
    },
    "resources": {
      "subscribe": false,
      "listChanged": false
    },
    "prompts": {
      "listChanged": false
    }
  },
  "tools": [
    {
      "name": "search_vehicles",
      "description": "Buscar vehículos en stock por marca, modelo, rango de precio en ARS o USD y tipo de combustible.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "brand": {
            "type": "string"
          },
          "model": {
            "type": "string"
          },
          "maxPrice": {
            "type": "number"
          },
          "currency": {
            "type": "string",
            "enum": [
              "ARS",
              "USD"
            ]
          }
        }
      }
    },
    {
      "name": "create_crm_lead",
      "description": "Crear y enrutar un lead de venta a través del algoritmo Round-Robin en SIVEC.",
      "inputSchema": {
        "type": "object",
        "required": [
          "name",
          "phone"
        ],
        "properties": {
          "name": {
            "type": "string"
          },
          "phone": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "vehicleId": {
            "type": "string"
          }
        }
      }
    }
  ],
  "resources": [
    {
      "uri": "sivec://inventory/summary",
      "name": "Dealership Inventory Summary",
      "mimeType": "application/json",
      "description": "Resumen en tiempo real del stock de vehículos, unidades disponibles y valor total del parque automotor."
    }
  ],
  "prompts": [
    {
      "name": "dealership_stock_overview",
      "description": "Genera un reporte resumido del estado del inventario para la gerencia de la concesionaria."
    }
  ]
}