{
  "$schema": "https://modelcontextprotocol.io/schemas/server-card-v1.json",
  "serverInfo": {
    "name": "chase-property-management-mcp",
    "version": "1.0.0",
    "description": "Servidor MCP oficial de Chase Property Management Group para inventario inmobiliario fiduciario en República Dominicana."
  },
  "transport": {
    "type": "streamable-http",
    "endpoint": "https://www.chasepmgt.com/api/mcp.php"
  },
  "endpoint": "https://www.chasepmgt.com/api/mcp.php",
  "capabilities": {
    "tools": true,
    "resources": true,
    "prompts": true
  },
  "tools": [
    {
      "name": "search_properties",
      "description": "Busca propiedades, solares y villas en República Dominicana.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "location": { "type": "string" },
          "category": { "type": "string" },
          "max_price": { "type": "number" }
        }
      }
    },
    {
      "name": "get_property_details",
      "description": "Obtiene detalles completos de una propiedad o proyecto por slug.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "property_id": { "type": "string" }
        },
        "required": ["property_id"]
      }
    },
    {
      "name": "reserve_property",
      "description": "Inicia un proceso formal de pre-reserva fiduciaria coordinado con la broker Socario Mass Abitabile.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "property_id": { "type": "string" },
          "buyer_name": { "type": "string" },
          "buyer_email": { "type": "string" }
        },
        "required": ["property_id", "buyer_name", "buyer_email"]
      }
    }
  ],
  "resources": [
    {
      "uri": "properties://inventory",
      "name": "Catálogo completo de propiedades",
      "mimeType": "application/json"
    }
  ],
  "prompts": [
    {
      "name": "consult_investment",
      "description": "Asesora al cliente sobre opciones de inversión y financiamiento."
    }
  ]
}
