{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "name": "penguineye-agentic-tools",
  "version": "1.0.0",
  "description": "Declared WebMCP tools for AI Agent interactions with PenguinEye services",
  "tools": [
    {
      "name": "submitProjectInquiry",
      "description": "Submit a software, ERP, or web development project inquiry or quotation request to PenguinEye.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "fullName": {
            "type": "string",
            "description": "Full name of the client or company representative"
          },
          "email": {
            "type": "string",
            "format": "email",
            "description": "Business or contact email address"
          },
          "phone": {
            "type": "string",
            "description": "Direct telephone or WhatsApp number with country code"
          },
          "serviceType": {
            "type": "string",
            "enum": [
              "erp",
              "web",
              "seo",
              "mobile",
              "gis",
              "other"
            ],
            "description": "The category of software or engineering service required"
          },
          "projectDetails": {
            "type": "string",
            "description": "Comprehensive requirements, business objectives, and estimated timeline"
          }
        },
        "required": [
          "fullName",
          "email",
          "projectDetails"
        ]
      },
      "endpoint": "/api/contact"
    },
    {
      "name": "scheduleMeeting",
      "description": "Book a strategic software architecture and digital discovery consultation with PenguinEye.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Client full name"
          },
          "email": {
            "type": "string",
            "format": "email",
            "description": "Client email address"
          },
          "date": {
            "type": "string",
            "format": "date",
            "description": "Desired consultation date (YYYY-MM-DD)"
          },
          "notes": {
            "type": "string",
            "description": "Key discussion topics or systems to review"
          }
        },
        "required": [
          "name",
          "email",
          "date"
        ]
      },
      "endpoint": "/api/meetings"
    },
    {
      "name": "searchServices",
      "description": "Search PenguinEye catalog of enterprise ERP systems, web solutions, and marketing strategies.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "keyword": {
            "type": "string",
            "description": "Search keyword or service category name"
          }
        },
        "required": [
          "keyword"
        ]
      },
      "endpoint": "/services"
    }
  ]
}