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 Reference

Complete reference for all TIDY CLI commands. For a quick introduction, see the CLI Quickstart.

Global Options

FlagDescription
--token <token>Override the stored API token for this command
--jsonOutput results as JSON instead of formatted text
--helpShow help for a command
--versionShow the CLI version

Authentication

tidy login

Authenticate with your TIDY account. Stores the token locally.

tidy login

tidy logout

Remove stored credentials.

tidy logout

Message

tidy message <text>

Send a natural language request to TIDY. This is the primary interface — describe what you need and TIDY handles the rest.

tidy message "Schedule a turnover clean after checkout on Saturday at 123 Main St"
tidy message "What cleanings are scheduled this week?"
tidy message "The bathroom faucet is leaking at my office, it's urgent"

Addresses

tidy addresses list

List all properties on your account.

tidy addresses list

tidy addresses get <id>

Get details for a specific address including access notes and parking info.

tidy addresses get 1001

Bookings

tidy bookings list

List bookings. Use flags to filter.

FlagDescription
--upcomingShow only upcoming bookings
--address <id>Filter by address ID
--status <status>Filter by status (confirmed, pending, completed, cancelled)

tidy bookings get <id>

Get details for a specific booking.

tidy bookings cancel <id>

Cancel a booking.

Issues

tidy issues list

List maintenance issues and tasks.

FlagDescription
--openShow only open issues
--address <id>Filter by address ID

tidy issues create

Create a new maintenance issue.

FlagDescription
--address <id>Address ID (required)
--urgentMark as urgent priority
tidy issues create --address 1001 --urgent "Kitchen faucet leaking"

Guest Reservations

tidy reservations list

List guest reservations with check-in/check-out dates.

FlagDescription
--address <id>Filter by address ID
--upcomingShow only upcoming reservations

Environment Variables

VariableDescription
TIDY_API_TOKENAPI token (overrides stored login)
TIDY_API_URLAPI base URL (default: https://api.tidy.com)