{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "version": "1.0.0",
  "name": "KumawatPulse WebMCP Tools",
  "description": "Standardized WebMCP tool interfaces for autonomous AI agents to search products, estimate projects, and submit B2B product inquiries.",
  "provider": {
    "name": "KumawatPulse Technologies Pvt Ltd",
    "url": "https://www.kumawat.co.in",
    "contact": "info@kumawat.co.in"
  },
  "auth": {
    "type": "none_required_for_inquiry",
    "documentation": "https://www.kumawat.co.in/auth.md"
  },
  "tools": [
    {
      "name": "submitProductInquiry",
      "description": "Submit inquiry for custom kumawat products, proprietary solutions, and software engineering services.",
      "method": "POST",
      "endpoint": "https://www.kumawat.co.in/api/inquiry",
      "inputSchema": {
        "type": "object",
        "properties": {
          "productType": {
            "type": "string",
            "description": "Product category, app name, or custom engineering service"
          },
          "contactEmail": {
            "type": "string",
            "format": "email",
            "description": "Requester contact email address for response and quote delivery"
          },
          "name": {
            "type": "string",
            "description": "Full name or contact person name"
          },
          "quantity": {
            "type": "string",
            "description": "Required quantity, scale, target team size, or expected user base"
          },
          "notes": {
            "type": "string",
            "description": "Special requirements, project scope, architecture notes, or questions"
          }
        },
        "required": ["productType", "contactEmail"]
      },
      "returnSchema": {
        "type": "object",
        "properties": {
          "status": { "type": "string" },
          "message": { "type": "string" },
          "inquiryId": { "type": "string" }
        },
        "required": ["status", "message"]
      }
    },
    {
      "name": "searchProductCatalog",
      "description": "Search and filter Kumawat proprietary software products, live apps, and platforms.",
      "method": "GET",
      "endpoint": "https://www.kumawat.co.in/api/tools?action=search",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": { "type": "string", "description": "Search keywords" },
          "category": { "type": "string", "description": "Product category" },
          "platform": { "type": "string", "description": "Target platform" }
        }
      }
    },
    {
      "name": "requestQuote",
      "description": "Get cost and timeline estimation for custom software engineering and AI agent development.",
      "method": "POST",
      "endpoint": "https://www.kumawat.co.in/api/inquiry?type=quote",
      "inputSchema": {
        "type": "object",
        "properties": {
          "projectType": { "type": "string" },
          "scope": { "type": "string" },
          "description": { "type": "string" },
          "contactEmail": { "type": "string", "format": "email" }
        },
        "required": ["projectType", "scope", "contactEmail"]
      }
    },
    {
      "name": "getCompanyInfo",
      "description": "Retrieve KumawatPulse company profile, core services, technology stack, and contact coordinates.",
      "method": "GET",
      "endpoint": "https://www.kumawat.co.in/api/tools?action=company"
    },
    {
      "name": "getServices",
      "description": "Retrieve the list of software engineering services offered by KumawatPulse.",
      "method": "GET",
      "endpoint": "https://www.kumawat.co.in/api/tools?action=company"
    },
    {
      "name": "estimateProject",
      "description": "Get a rough cost and timeline estimate for a software project.",
      "method": "POST",
      "endpoint": "https://www.kumawat.co.in/api/inquiry?type=quote"
    },
    {
      "name": "listTechnologies",
      "description": "List the technology stack and expertise areas.",
      "method": "GET",
      "endpoint": "https://www.kumawat.co.in/api/tools?action=company"
    }
  ]
}
