Book Test Prep
Book test-prep services through Lokuli MCP. Use when user needs to find and book test-prep. Triggers on requests like "book a test-prep", "find test-prep near me", or any test-prep 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
The name/description match the runtime instructions: the SKILL.md shows JSON-RPC calls for searching, checking availability, and creating bookings on Lokuli's MCP. There are no unrelated binaries or environment variables requested.
Instruction Scope
Instructions explicitly call an external MCP endpoint (https://lokuli.com/mcp/sse) and include example JSON that will transmit customer PII (name, email, phone) to that endpoint when creating bookings. That behavior is expected for a booking skill, but it is important to note the transmission of personal data to an external domain and confirm user consent and privacy handling.
Install Mechanism
Instruction-only skill with no install spec and no code files — nothing is written to disk by the skill itself; this is the lowest-risk install profile.
Credentials
The skill declares no environment variables or credentials. However it interacts with an external service (Lokuli MCP) but does not declare any required API key or auth token. This could be legitimate (public endpoint or platform-provided auth), but you should confirm how authentication and authorization are handled before sending bookings or PII.
Persistence & Privilege
always is false and the skill requests no persistent config or system changes. It does not request elevated privileges or modify other skills' configuration.
Assessment
This skill will send users' names, emails, and phone numbers to https://lokuli.com when creating bookings. Before installing or using it: (1) confirm you trust Lokuli (the skill has no homepage or publisher details), (2) check whether the agent platform supplies authentication (the skill declares no API key but contacts an external endpoint), (3) ensure you have user consent to transmit personal contact info, and (4) prefer skills with a verifiable homepage or documented privacy policy if you plan to handle PII regularly.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 test prep
Book test-prep 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": "test-prep",
"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…
