{
  "$schema": "https://modelcontextprotocol.io/schema/mcp.json",
  "mcpVersion": "2025-06-18",
  "name": "nagpal-metal",
  "title": "Nagpal Metal — Commercial Kitchen Equipment Supplier, Gurugram",
  "description": "WebMCP tools for Nagpal Metal: search the commercial kitchen equipment catalogue, list categories, get contact details, and submit a wholesale quote enquiry. Serving restaurants, hotels, cloud kitchens, bakeries and dhabas across Gurugram & Delhi NCR.",
  "homepage": "https://www.nagpalmetal.in",
  "runtime": { "transport": "web", "script": "https://www.nagpalmetal.in/webmcp.js" },
  "tools": [
    {
      "name": "search_products",
      "description": "Search the Nagpal Metal commercial kitchen equipment catalogue by keyword and/or category.",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {
          "query": { "type": "string", "description": "Product keyword, e.g. \"chafing dish\", \"gas burner\", \"kadhai\".", "minLength": 1 },
          "category": {
            "type": "string",
            "description": "Optional category filter.",
            "enum": ["cookware", "crockery", "buffet", "gas-electric", "bakery", "bar", "storage", "kitchen-tools"]
          }
        },
        "required": ["query"],
        "additionalProperties": false
      }
    },
    {
      "name": "list_categories",
      "description": "List all 8 commercial kitchen equipment categories Nagpal Metal supplies, with page URLs.",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {},
        "additionalProperties": false
      }
    },
    {
      "name": "get_contact_info",
      "description": "Get Nagpal Metal contact details: phone, WhatsApp, showroom address, opening hours and delivery area.",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {},
        "additionalProperties": false
      }
    },
    {
      "name": "request_quote",
      "description": "Submit a wholesale quote enquiry for commercial kitchen equipment. Mirrors the on-site enquiry form.",
      "inputSchema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "type": "object",
        "properties": {
          "name": { "type": "string", "description": "Contact person full name.", "maxLength": 80 },
          "phone": { "type": "string", "description": "Phone number for the quote.", "maxLength": 20 },
          "business": { "type": "string", "description": "Restaurant / hotel / cloud kitchen name.", "maxLength": 100 },
          "businessType": {
            "type": "string",
            "description": "Type of business.",
            "enum": ["Restaurant", "Hotel / Resort", "Cloud Kitchen", "Catering Company", "Club / Bar / Nightclub", "Dhaba / Canteen", "Bakery / Café", "Franchise / Chain", "Other"]
          },
          "city": { "type": "string", "description": "City (e.g. Gurugram, Delhi).", "maxLength": 60 },
          "needs": { "type": "string", "description": "What is needed — items, volume, budget, new setup vs restock.", "maxLength": 800 }
        },
        "required": ["name", "phone", "business"],
        "additionalProperties": false
      }
    }
  ]
}
