check_guest_risk_score
Assess guest risk before booking by analyzing email to identify potential threats and protect vacation rental hosts.
Instructions
Pre-booking risk assessment
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| guest_email | Yes |
Implementation Reference
- index.js:12-12 (registration)Registration of the 'check_guest_risk_score' tool in the TOOLS array. This defines the tool's name, description, and input schema. Note: No specific handler implementation is present; tool calls return a stub message directing to the full server.{ name: "check_guest_risk_score", description: "Pre-booking risk assessment", inputSchema: { type: "object", properties: { guest_email: { type: "string" } }, required: ["guest_email"] } },