Give your AI agent salon superpowers.
The Tresse MCP server lets any AI assistant search salons, check real-time availability, and link clients to booking -- in one npx command.
Two minutes to connect.
Add to claude_desktop_config.json
{
"mcpServers": {
"tresse": {
"command": "npx",
"args": ["@tresse/mcp-server"],
"env": {
"TRESSE_DEVELOPER_KEY": "dk_live_..."
}
}
}
}Add to .mcp.json in your project root
{
"mcpServers": {
"tresse": {
"command": "npx",
"args": ["@tresse/mcp-server"],
"env": {
"TRESSE_DEVELOPER_KEY": "dk_live_..."
}
}
}
}Five tools. Full booking flow.
The first three tools work with any developer key. Booking tools require a business API key from the salon's Tresse dashboard.
search_businessesPublicFind salons, spas, and studios by name, city, state, or service type. Returns ratings, categories, and slugs for further queries.
Params: query, city, state, serviceType
get_businessPublicGet full details for a business -- services with pricing, staff bios, locations, hours, and reviews.
Params: slug
check_availabilityPublicCheck real-time open time slots for a service on a specific date. Optionally filter by staff member.
Params: slug, serviceId, date, staffId?
create_bookingBusiness keyBook an appointment with client details. Requires a business API key (sk_live_) from the salon's Tresse dashboard.
Params: slug, serviceId, staffId, date, time, firstName, lastName, email
get_booking_statusBusiness keyCheck the status of an existing booking by ID. Requires a business API key.
Params: bookingId
Free to use. Higher limits with a key.
The MCP server works without any key at anonymous rate limits. For production use, grab a free developer key and set it as TRESSE_DEVELOPER_KEY in your MCP config.
Connect in two minutes.
Install the MCP server. Get a developer key. Your AI agent can search and book across the entire Tresse network.
npx @tresse/mcp-server