{
  "name": "com-care-mcp-server",
  "version": "1.0.0",
  "title": "Com Care Services Agent Tools",
  "description": "Model Context Protocol (MCP) server card exposing tool endpoints for AI agents to query IT repair services, products, business hours, and submit service requests in Mayiladuthurai, India.",
  "publisher": "Com Care Services",
  "homepage": "https://comcareservices.com",
  "tools": [
    {
      "name": "get_services",
      "description": "Retrieve list of computer repair, CCTV, printer, biometrics, and AMC services provided by Com Care.",
      "parameters": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "enum": ["all", "laptop_pc", "cctv", "printer", "biometrics", "amc", "networking"],
            "description": "Service category to filter by."
          }
        }
      },
      "endpoint": "https://comcareservices.com/llms.txt"
    },
    {
      "name": "get_business_info",
      "description": "Get location, phone numbers, email, business hours, and service radius for Com Care Services.",
      "endpoint": "https://comcareservices.com/llms.txt"
    },
    {
      "name": "submit_inquiry",
      "description": "Submit a customer quote request or service inquiry directly to Com Care Services.",
      "parameters": {
        "type": "object",
        "required": ["name", "phone", "service"],
        "properties": {
          "name": { "type": "string", "description": "Customer name" },
          "phone": { "type": "string", "description": "Contact phone number or WhatsApp" },
          "email": { "type": "string", "description": "Optional email address" },
          "service": { "type": "string", "description": "Service needed (e.g. CCTV, Laptop repair, Printer)" },
          "message": { "type": "string", "description": "Additional notes or equipment model details" }
        }
      },
      "endpoint": "https://comcareservices.com/api/inquiry",
      "method": "POST"
    }
  ]
}
