{
    "name": "OZAPATO Safety Footwear Agent Tools",
    "version": "1.0.0",
    "description": "Official WebMCP agent tool manifest for querying ASTM F2413-24 certified safety shoes, dielectric footwear (EH 18kV), cleanroom ESD shoes, and corporate B2B fleet quotations across Latin America and North America.",
    "homepage": "https://ozapato.com",
    "tools": [
        {
            "name": "ozapato_search_products",
            "description": "Search and filter OZAPATO safety boots by certification (ASTM F2413-24, EH 18kV, ESD, Kevlar), country, and occupational hazard vertical.",
            "parameters": {
                "type": "object",
                "properties": {
                    "country": {
                        "type": "string",
                        "enum": [
                            "pa",
                            "cr",
                            "mx",
                            "gt",
                            "uy",
                            "do",
                            "bo",
                            "pe",
                            "jm",
                            "ve",
                            "sv",
                            "ni",
                            "bz",
                            "cl"
                        ],
                        "description": "Target country code (e.g. pa, cr, mx, gt, uy, do, bo, pe, jm, ve)"
                    },
                    "hazard": {
                        "type": "string",
                        "enum": [
                            "dielectric_18kv",
                            "esd_cleanroom",
                            "puncture_resistant_kevlar",
                            "tactical_police",
                            "oil_slip_resistant",
                            "construction",
                            "all"
                        ],
                        "description": "Occupational hazard type or protection level required"
                    },
                    "q": {
                        "type": "string",
                        "description": "Model name or search keywords (e.g. Watt 01, Rock 01, Cop 01, Bird 99, Chef 01, Chelsea)"
                    }
                },
                "required": [
                    "country"
                ]
            },
            "endpoint": "https://ozapato.com/wp-json/ozapato/v1/agent-search"
        },
        {
            "name": "ozapato_get_product_specs",
            "description": "Retrieve complete technical specifications, ASTM F2413-24 / NOM-113 / INTECO / MITRADEL certification details, leather grade, sole technology, and warranty for a specific model.",
            "parameters": {
                "type": "object",
                "properties": {
                    "model": {
                        "type": "string",
                        "description": "Model identifier (e.g. Watt 01, Watt 03, Rock 01, Badger 01, Cop 01, Cop 02, Bird 99, Chef 01, Royale 01, Welt 06, Sol 01, Hammer 01)"
                    },
                    "country": {
                        "type": "string",
                        "description": "Target country code (optional, defaults to global)"
                    }
                },
                "required": [
                    "model"
                ]
            },
            "endpoint": "https://ozapato.com/wp-json/ozapato/v1/agent-search"
        },
        {
            "name": "ozapato_request_b2b_quote",
            "description": "Request a corporate B2B fleet volume quotation (10 to 500+ pairs) with direct factory pricing or request a free sample size kit for Occupational Health (EHS) teams.",
            "parameters": {
                "type": "object",
                "properties": {
                    "company_name": {
                        "type": "string",
                        "description": "Company / Corporate Name"
                    },
                    "contact_name": {
                        "type": "string",
                        "description": "Contact person full name"
                    },
                    "contact_email": {
                        "type": "string",
                        "format": "email",
                        "description": "Business email address"
                    },
                    "phone": {
                        "type": "string",
                        "description": "Contact telephone or WhatsApp number"
                    },
                    "country": {
                        "type": "string",
                        "enum": [
                            "pa",
                            "cr",
                            "mx",
                            "gt",
                            "uy",
                            "do",
                            "bo",
                            "pe",
                            "jm",
                            "ve",
                            "sv",
                            "ni",
                            "bz",
                            "cl"
                        ],
                        "description": "Destination country"
                    },
                    "quantity_pairs": {
                        "type": "integer",
                        "minimum": 1,
                        "description": "Estimated number of pairs required"
                    },
                    "models_interested": {
                        "type": "array",
                        "items": {
                            "type": "string"
                        },
                        "description": "Models of interest (e.g. [\"Watt 01\", \"Rock 01\"])"
                    },
                    "sample_kit_requested": {
                        "type": "boolean",
                        "description": "Whether physical sample size kit is requested for fitting"
                    }
                },
                "required": [
                    "company_name",
                    "contact_email",
                    "country",
                    "quantity_pairs"
                ]
            },
            "endpoint": "https://ozapato.com/wp-json/ozapato/v1/agent-quote"
        }
    ]
}