Book Cleaning
Book cleaning services through Lokuli MCP. Use when user needs to find and book cleaning. Triggers on requests like "book a cleaning", "find cleaning near me", or any cleaning service request.
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 1 · 1.2k · 0 current installs · 0 all-time installs
byLokuli@edwardrodriguez703-design
MIT-0
Security Scan
OpenClaw
Benign
medium confidencePurpose & Capability
Name/description match the instructions: the SKILL.md shows JSON-RPC calls to search, check availability, and create bookings on an external Lokuli MCP endpoint. Nothing requested or described is unrelated to booking cleaning services.
Instruction Scope
Instructions confine actions to calling the Lokuli MCP (search, check_availability, create_booking). They do not reference reading local files or environment variables. However, the create_booking example includes user PII (name, email, phone) — the skill will need to collect and transmit that data at runtime.
Install Mechanism
Instruction-only skill with no install spec and no code files — nothing is written to disk or installed, which minimizes installation risk.
Credentials
The skill declares no environment variables or credentials. SKILL.md also does not document any authentication/API key for the external MCP endpoint, which could mean the endpoint accepts unauthenticated requests or the skill is missing necessary auth instructions. Either way, user PII will be transmitted to an external domain (lokuli.com).
Persistence & Privilege
No 'always: true' or install-time persistence requested. The skill is user-invocable and allows autonomous invocation by default (platform default) but does not request elevated or cross-skill privileges.
Assessment
This skill appears to do what it claims: call an external Lokuli MCP service to search and create cleaning bookings. Before installing or using it, consider: (1) it will need your contact details (name, email, phone) to create bookings — only provide data you are comfortable sharing; (2) SKILL.md does not show any authentication for the external endpoint, so confirm how the service is authorized and whether requests are logged or authenticated; (3) verify the vendor (lokuli.com) and its privacy/security practices if possible; (4) if you have concerns, avoid giving PII to the skill and prefer calling the cleaning service directly.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 cleaning
Book cleaning 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": "cleaning",
"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…
