TIDY Concierge

Concierge

TIDY Concierge

The Concierge combines our AI agent with 24/7 humans to help.

AI can make mistakes. Please verify important information.

CLI Quickstart

The TIDY CLI lets you manage properties, schedule cleanings, and track maintenance directly from your terminal. It wraps the TIDY REST API with a developer-friendly interface.

Install

Homebrew (macOS)

brew install tidyapp/tap/tidy-request

npm (global install)

npm install -g @tidyapp/cli

Run without installing

npx @tidyapp/cli message "Schedule a cleaning"
macOS note: macOS includes a built-in /usr/bin/tidy command (HTML Tidy). The TIDY CLI installs as tidy-request to avoid conflicts.

Authenticate

Log in with your TIDY account:

$ tidy-request login
Email: you@example.com
Password: ********
✓ Logged in successfully. Token saved.

Alternatively, set the token directly:

export TIDY_API_TOKEN=your-api-token
Don't have an account? Sign up at tidy.com/create-account.

Your First Commands

Send a natural language request

$ tidy-request message "Schedule a 2-hour cleaning next Tuesday at 123 Main St"
✓ Booking created: #78901
  Date: Tuesday March 25, 1:00 PM - 5:00 PM
  Address: 123 Main St

List your properties

$ tidy-request addresses list
ID      Name              Address
1001    Beach House       123 Main St, Miami FL
1002    Downtown Office   456 Oak Ave, Austin TX

List upcoming bookings

$ tidy-request bookings list --upcoming
ID      Date         Address          Status
78901   Mar 25       123 Main St      Confirmed
78902   Mar 27       456 Oak Ave      Pending

Report a maintenance issue

$ tidy-request issues create --address 1001 --urgent "Kitchen faucet leaking"
✓ Issue created: #4567
  Priority: Urgent
  Status: Open

Next Steps