Ezi Home Services
Book, reschedule, and cancel home services (cleaning, lawn, snow) via phone OTP authentication.
Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeRead-only
What it can do
What data it sees
Do you need an account
No: the server works without sign-in
Book, reschedule, and cancel home services (cleaning, lawn, snow) via phone OTP authentication.
Server tool list (8)
Raw names from tools/list. Only developers need these.
| get_profile | Return the authenticated customer's profile: name, account ID, balance, primary address, and payment method status. |
| lookup_scheduled_jobs | Return the authenticated customer's upcoming scheduled jobs. Call this before rescheduling or cancelling to get the job ID. |
| get_available_services | Returns service categories and types available for a given postal or zip code, accounting for location coverage and seasonal availability. Call this after collecting the customer's postal code to determine what services to offer. |
| current_datetime | Returns the current date and time in UTC and, if a city is provided, in the local timezone. Call this before create_order to get the correct timezone offset. |
| calculate_quote | Calculate an estimated price and duration for a service WITHOUT creating a booking. Use this during the quoting phase before the customer commits. |
| create_order | Create a service order for the authenticated customer. Call calculate_quote first to get the price and recommended durationHours, then call this once the customer agrees. |
| reschedule_job | Reschedule one of the authenticated customer's upcoming jobs to a new date and time. Call lookup_scheduled_jobs first to get the job ID. Get explicit customer confirmation before setting confirmed to true. |
| cancel_job | Cancel one of the authenticated customer's upcoming jobs. Call lookup_scheduled_jobs first to get the job ID. Get explicit customer confirmation before setting confirmed to true. |