Book Nails
v1.0.1Book nails services through Lokuli MCP. Use when user needs to find and book nails. Triggers on requests like "book a nails", "find nails near me", or any nails service request.
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
The name/description (book nails via Lokuli MCP) align with the instructions: search, check_availability, and create_booking RPC calls against an MCP endpoint. Example parameters (providerId/serviceId/time/customer contact) are appropriate for booking functionality.
Instruction Scope
SKILL.md only defines JSON-RPC/SSE calls and example payloads to the Lokuli MCP endpoint; it does not instruct the agent to read local files, arbitrary env vars, or exfiltrate unrelated data. The instructions are narrowly scoped to searching and creating bookings.
Install Mechanism
This is an instruction-only skill with no install spec or code files, so nothing is written to disk or downloaded during install.
Credentials
No env vars or credentials are declared. That can be fine if the MCP endpoint is public or the platform supplies auth, but the SKILL.md does not document authentication or required tokens. Also, booking actions will transmit customer contact info (email, phone) to an external domain — expected for a booking skill but worth confirming.
Persistence & Privilege
The skill is not marked always:true and does not request persistent system-wide changes. It does not modify other skills or system configs.
Assessment
This skill appears to be what it says: it prepares JSON-RPC calls to Lokuli's MCP to search and create nail-service bookings. Before installing or enabling it, confirm: (1) whether your platform will supply any needed Lokuli credentials (the SKILL.md does not mention API keys or auth), (2) that you trust the external endpoint https://lokuli.com (bookings will send customer name, email, and phone to that domain), and (3) that the agent will prompt you for or confirm customer details before creating a booking (the examples contain placeholders). Also note small issues in the doc (typo in header, example zipCode/time values) — you may want to validate behavior in a test environment first.Like a lobster shell, security has layers — review code before you run it.
latest
uook nails
Book nails 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": "nails",
"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"
}
}
}
Comments
Loading comments...
