{
    "name": "monstand.africa",
    "description": "Custom premium exhibition stands in Abidjan & West Africa.",
    "version": "1.0",
    "tools": [
        {
            "name": "request_quote",
            "description": "Request a free, no-obligation quote for a custom exhibition stand from monstand.africa (Abidjan & West Africa).",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "company": {
                        "type": "string",
                        "description": "Company name"
                    },
                    "name": {
                        "type": "string",
                        "description": "Contact full name"
                    },
                    "email": {
                        "type": "string",
                        "description": "Contact email address"
                    },
                    "phone": {
                        "type": "string",
                        "description": "Phone number (optional)"
                    },
                    "salon": {
                        "type": "string",
                        "description": "Trade show and/or city (optional)"
                    },
                    "surface": {
                        "type": "string",
                        "description": "Approximate stand area, e.g. \"24 m²\" (optional)"
                    },
                    "budget": {
                        "type": "string",
                        "description": "Indicative budget (optional)"
                    },
                    "message": {
                        "type": "string",
                        "description": "Project description (optional)"
                    },
                    "lang": {
                        "type": "string",
                        "enum": [
                            "fr",
                            "en"
                        ],
                        "description": "Preferred language"
                    }
                },
                "required": [
                    "name",
                    "email"
                ],
                "additionalProperties": false
            }
        },
        {
            "name": "list_available_slots",
            "description": "List available 30-minute video-call discovery slots for a given date. Times are in Abidjan time (GMT).",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "date": {
                        "type": "string",
                        "description": "Date in YYYY-MM-DD format"
                    }
                },
                "required": [
                    "date"
                ],
                "additionalProperties": false
            }
        },
        {
            "name": "book_video_call",
            "description": "Book a 30-minute discovery video call with the monstand.africa team. Date and time are in Abidjan time (GMT). Use list_available_slots first.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "name": {
                        "type": "string",
                        "description": "Full name"
                    },
                    "email": {
                        "type": "string",
                        "description": "Email address"
                    },
                    "date": {
                        "type": "string",
                        "description": "Date in YYYY-MM-DD format (Abidjan time)"
                    },
                    "time": {
                        "type": "string",
                        "description": "Time in HH:MM format (Abidjan time, GMT)"
                    },
                    "company": {
                        "type": "string",
                        "description": "Company name (optional)"
                    },
                    "phone": {
                        "type": "string",
                        "description": "Phone number (optional)"
                    },
                    "topic": {
                        "type": "string",
                        "description": "What to discuss (optional)"
                    },
                    "lang": {
                        "type": "string",
                        "enum": [
                            "fr",
                            "en"
                        ],
                        "description": "Preferred language"
                    }
                },
                "required": [
                    "name",
                    "email",
                    "date",
                    "time"
                ],
                "additionalProperties": false
            }
        }
    ]
}