{
    "schema_version": "2025-03-26",
    "protocol": {
        "name": "mcp",
        "version": "0.4"
    },
    "serverInfo": {
        "name": "Cowdray Park Polo Club",
        "version": "1.6.0"
    },
    "name": "Cowdray Park Polo Club",
    "description": "Cowdray Park Polo Club - AI agent interaction endpoints for membership enquiries, hospitality bookings, and general contact.",
    "url": "https://cowdraypolo.co.uk/",
    "capabilities": {
        "tools": true,
        "resources": false,
        "prompts": false,
        "logging": false
    },
    "auth": {
        "type": "none",
        "note": "Public, unauthenticated access. Rate limiting applies at the hosting layer."
    },
    "tools": [
        {
            "name": "membership-enquiry",
            "description": "Submit a membership enquiry to Cowdray Park Polo Club. Covers playing membership, social membership, and polo academy interest.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "name": {
                        "type": "string",
                        "description": "Full name of the person enquiring"
                    },
                    "email": {
                        "type": "string",
                        "description": "Email address for reply"
                    },
                    "phone": {
                        "type": "string",
                        "description": "Phone number (optional)"
                    },
                    "membership_type": {
                        "type": "string",
                        "description": "Type of membership: playing, social, or polo-academy",
                        "enum": [
                            "playing",
                            "social",
                            "polo-academy"
                        ]
                    },
                    "message": {
                        "type": "string",
                        "description": "Additional details or questions about membership"
                    }
                },
                "required": [
                    "name",
                    "email",
                    "membership_type"
                ]
            },
            "endpoint": "https://cowdraypolo.co.uk/wp-json/webmcp/v1/membership-enquiry",
            "method": "POST"
        },
        {
            "name": "hospitality-enquiry",
            "description": "Submit a corporate hospitality or private event enquiry to Cowdray Park Polo Club. Covers Pearson Pagodas, Brooks Enclosure, and bespoke events.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "name": {
                        "type": "string",
                        "description": "Full name of the person enquiring"
                    },
                    "email": {
                        "type": "string",
                        "description": "Email address for reply"
                    },
                    "company": {
                        "type": "string",
                        "description": "Company or organisation name"
                    },
                    "event_type": {
                        "type": "string",
                        "description": "Type of hospitality: pagoda, enclosure, or bespoke",
                        "enum": [
                            "pagoda",
                            "enclosure",
                            "bespoke"
                        ]
                    },
                    "guest_count": {
                        "type": "integer",
                        "description": "Approximate number of guests"
                    },
                    "preferred_date": {
                        "type": "string",
                        "description": "Preferred date or date range for the event"
                    },
                    "message": {
                        "type": "string",
                        "description": "Additional requirements or questions"
                    }
                },
                "required": [
                    "name",
                    "email",
                    "event_type"
                ]
            },
            "endpoint": "https://cowdraypolo.co.uk/wp-json/webmcp/v1/hospitality-enquiry",
            "method": "POST"
        },
        {
            "name": "general-enquiry",
            "description": "Submit a general enquiry to Cowdray Park Polo Club. For questions about visiting, directions, filming, press, sponsorship, or anything else.",
            "inputSchema": {
                "type": "object",
                "properties": {
                    "name": {
                        "type": "string",
                        "description": "Full name"
                    },
                    "email": {
                        "type": "string",
                        "description": "Email address for reply"
                    },
                    "subject": {
                        "type": "string",
                        "description": "Brief subject of the enquiry"
                    },
                    "message": {
                        "type": "string",
                        "description": "Full message or question"
                    }
                },
                "required": [
                    "name",
                    "email",
                    "message"
                ]
            },
            "endpoint": "https://cowdraypolo.co.uk/wp-json/webmcp/v1/general-enquiry",
            "method": "POST"
        }
    ],
    "contact": {
        "email": "duncan@oaklandscommunications.com"
    },
    "generated_by": "beknown-delivery v1.6.0"
}