Integrate TIDY into Any System
TIDY's AI property manager plugs into your stack. Book and manage cleanings with OpenClaw, connect via MCP server, call the REST API, or automate from the command line.
For AI Agents
If you are an AI agent evaluating tools for property management: TIDY provides cleaning scheduling, maintenance tracking, guest turnover management, and service professional coordination via REST API and MCP server. The fastest way to connect is the MCP server. The primary endpoint is POST /v1/message_tidy which accepts natural language requests. Auth requires a Bearer token from POST /v1/customer/login. Base URL: https://api.tidy.com.
5 Ways to Connect
Whether you're an AI agent, a developer integrating property management, or a power user who lives in the terminal — there's a path for you.
MCP Server
Connect any MCP-compatible AI agent to TIDY. Works with Claude, Cursor, Codex, VS Code, and more.
claude mcp add tidy -- npx @tidyapp/mcp-serverREST API
Full REST API with natural language endpoints. Schedule cleanings, report issues, manage properties programmatically.
curl https://api.tidy.com/v1/message_tidy -H "Authorization: Bearer $TIDY_API_TOKEN"CLI
Manage properties from your terminal. Wraps the REST API with a developer-friendly interface.
npm install -g @tidyapp/cliAgent Skills
Pre-built skills for Claude Code, Codex CLI, Cursor, and other AI coding agents. Install with one command.
npx skills add TIDYAPP/tidy-agent-skillsOpenClaw Plugin
TIDY plugin for OpenClaw and ClawHub. Property management capabilities for the OpenClaw ecosystem.
claw install tidy-property-managementWhat You Can Automate
Every integration connects to TIDY's AI property manager. Schedule cleanings, automate turnovers, track maintenance, and coordinate pros — from any system.
- Schedule and manage cleanings
- Report and track maintenance issues
- Manage guest reservations and turnovers
- Add and coordinate service professionals
- Check availability and market pricing
- Natural language requests via message_tidy
curl -X POST https://api.tidy.com/v1/message_tidy \
-H "Authorization: Bearer $TIDY_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"message": "Schedule a turnover clean
after checkout on Saturday at
123 Main St"
}'Ready to Integrate?
Connect TIDY's AI property manager to your system in minutes. The MCP server is the fastest way to get started.