Book Barber
Book barber services through Lokuli MCP. Use when user needs to find and book barber. Triggers on requests like "book a barber", "find barber near me", or any barber service request.
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 0 · 1.1k · 0 current installs · 0 all-time installs
byLokuli@edwardrodriguez703-design
MIT-0
Security Scan
OpenClaw
Benign
medium confidencePurpose & Capability
Name/description (book barber services) matches the provided runtime instructions: search, check_availability, and create_booking against Lokuli's MCP endpoint. No unrelated binaries, env vars, or installs are requested.
Instruction Scope
Instructions are scoped to calling the Lokuli MCP endpoint via JSON-RPC/SSE and show templates for search/availability/booking. They do include example customer PII (name, email, phone) and a hard-coded zip code sample, and they do not describe consent/confirmation steps or how/when to prompt the user before transmitting personal data to the remote endpoint.
Install Mechanism
Instruction-only skill with no install spec and no code files—nothing is written to disk and no external packages are pulled in.
Credentials
The skill declares no required environment variables or credentials. That is proportionate if the MCP endpoint is public or authentication is handled elsewhere, but the SKILL.md does not explain how the agent authenticates to lokuli.com or whether sensitive user data will be sent unauthenticated.
Persistence & Privilege
No always:true and no install means the skill does not request elevated persistence or modify agent/system configuration. Autonomous invocation is allowed by default (normal).
Assessment
This skill appears to do what it says, but the source is unknown and the instructions omit authentication and privacy details. Before installing or using it: 1) verify the lokuli.com endpoint is legitimate and trustworthy; 2) confirm how the agent is authenticated to the MCP (API key, OAuth, or public API) — the SKILL.md doesn't say; 3) ensure the agent will ask for explicit user consent before sending personal contact info (name/email/phone) to the remote service; 4) test with non-sensitive/dummy data first; and 5) prefer skills from known publishers or with documented auth and privacy behavior. If you cannot confirm how data is protected or authenticated, treat it with caution or avoid enabling it.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.1
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
uook uaruer
Book barber services through Lokuli's MCP server.
MCP Endpoint
https://lokuli.com/mcp/sse
Transport: SSE | JSON-RPC 2.0 | POST requests
Tools
search
{
"method": "tools/call",
"params": {
"name": "search",
"arguments": {
"query": "barber",
"zipCode": "90640",
"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"
}
}
}
Files
1 totalSelect a file
Select a file to preview.
Comments
Loading comments…
