Book Beauty

Book beauty services through Lokuli MCP. Use when user needs haircuts, barbers, hair salons, nails, makeup, spa treatments, or any beauty service. Triggers on requests like "book me a haircut", "find a barber near me", "nail salon appointment", "makeup artist", or any beauty service request.

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 1.1k · 0 current installs · 0 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description (book beauty services) match the SKILL.md workflow and the provided JSON-RPC tool calls (search, check_availability, create_booking). The listed service types and steps are coherent with a booking skill.
Instruction Scope
The instructions explicitly direct the agent to interact with an external MCP endpoint (https://lokuli.com/mcp/sse) using SSE/JSON-RPC and to call create_booking with customerName, customerEmail, and customerPhone. This is expected for making bookings, but it means the agent will transmit personal data to an external service; the SKILL.md does not describe authentication, consent handling, or where generated checkout links point.
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest-risk delivery method. Nothing is written to disk by the skill itself.
Credentials
The skill declares no required environment variables or credentials, yet it calls an external MCP endpoint. Either the platform provides the necessary auth, or the SKILL.md is incomplete. Also, it expects to send personal customer data (name, email, phone) which is proportionate to booking functionality but requires privacy consideration.
Persistence & Privilege
always is false and model invocation is allowed (default). The skill does not request persistent system-level privileges, nor does it attempt to modify other skills or system-wide config in the instructions.
Assessment
This skill appears to do what it says (find and book beauty services), but before installing consider: (1) The SKILL.md will send personal data (name, email, phone) to https://lokuli.com — confirm that Lokuli is a trusted service and that the platform will supply any needed API credentials. (2) The skill does not describe authentication or data handling/consent; ask the publisher how customer data and checkout links are protected and where booking links point. (3) If you have privacy concerns, avoid providing real PII during testing, and require explicit user consent before creating bookings. If the source/publisher is unknown or unverifiable, treat the skill cautiously.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk97cp4atehrvgg482rd9b5nak180myq9

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

Book Beauty Services

Book beauty services through Lokuli's MCP server.

MCP Endpoint

https://lokuli.com/mcp/sse

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

{
  "method": "tools/call",
  "params": {
    "name": "search",
    "arguments": {
      "query": "haircut",
      "zipCode": "90640",
      "category": "Beauty Services",
      "maxResults": 20
    }
  }
}

check_availability

{
  "method": "tools/call",
  "params": {
    "name": "check_availability",
    "arguments": {
      "providerId": "xxx",
      "serviceId": "yyy",
      "date": "2025-02-10"
    }
  }
}

create_booking

{
  "method": "tools/call",
  "params": {
    "name": "create_booking",
    "arguments": {
      "providerId": "xxx",
      "serviceId": "yyy",
      "timeSlot": "2025-02-10T14:00:00-08:00",
      "customerName": "John Doe",
      "customerEmail": "john@example.com",
      "customerPhone": "+13105551234"
    }
  }
}

Workflow

  1. Understand — What beauty service? Where (ZIP)?
  2. Search — Find matching providers
  3. Present — Show top results with pricing
  4. Check availability — Get open time slots
  5. Confirm — Get explicit user approval
  6. Create booking — Generate checkout link

Files

1 total
Select a file
Select a file to preview.

Comments

Loading comments…