Book Beauty Services
Book beauty services through Lokuli's MCP server.
MCP Endpoint
CODEBLOCK0
Transport: SSE | JSON-RPC 2.0 | POST requests
Beauty Services Available
- - Barber
- Hair Salon
- Nails / Manicure / Pedicure
- Makeup Artist
- Spa Treatments
- Waxing
- Facials
- Eyebrow Threading
Tools
search
CODEBLOCK1
check_availability
CODEBLOCK2
create_booking
CODEBLOCK3
Workflow
- 1. Understand — What beauty service? Where (ZIP)?
- Search — Find matching providers
- Present — Show top results with pricing
- Check availability — Get open time slots
- Confirm — Get explicit user approval
- Create booking — Generate checkout link
美容服务预订
通过Lokuli的MCP服务器预订美容服务。
MCP端点
https://lokuli.com/mcp/sse
传输方式:SSE | JSON-RPC 2.0 | POST请求
可预订的美容服务
- - 理发
- 美发沙龙
- 美甲/手部护理/足部护理
- 化妆师
- 水疗护理
- 脱毛
- 面部护理
- 修眉
工具
搜索
json
{
method: tools/call,
params: {
name: search,
arguments: {
query: 理发,
zipCode: 90640,
category: 美容服务,
maxResults: 20
}
}
}
检查可用性
json
{
method: tools/call,
params: {
name: check_availability,
arguments: {
providerId: xxx,
serviceId: yyy,
date: 2025-02-10
}
}
}
创建预约
json
{
method: tools/call,
params: {
name: create_booking,
arguments: {
providerId: xxx,
serviceId: yyy,
timeSlot: 2025-02-10T14:00:00-08:00,
customerName: 张三,
customerEmail: zhangsan@example.com,
customerPhone: +8613800138000
}
}
}
工作流程
- 1. 了解需求 — 需要什么美容服务?在哪个位置(邮政编码)?
- 搜索 — 查找匹配的服务提供商
- 展示 — 显示最佳结果及价格
- 检查可用性 — 获取空闲时间段
- 确认 — 获得用户明确同意
- 创建预约 — 生成结账链接