Book Acupuncture

v1.0.1

Book acupuncture services through Lokuli MCP. Use when user needs to find and book acupuncture. Triggers on requests like "book a acupuncture", "find acupuncture near me", or any acupuncture service request.

1· 1.3k·0 current·0 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name/description (book acupuncture via Lokuli MCP) match the SKILL.md which provides JSON-RPC/SSE calls for searching providers, checking availability, and creating bookings. The skill does not request unrelated credentials, binaries, or config paths.
Instruction Scope
The runtime instructions explicitly call an external MCP endpoint (https://lokuli.com/mcp/sse) and include sending customer PII (name, email, phone) as part of create_booking—this is expected for booking, but it does mean user data will be transmitted to an external service. The instructions do not reference other system files, environment variables, or unrelated data.
Install Mechanism
Instruction-only skill with no install spec and no code files, so nothing is written to disk or installed during setup.
Credentials
No environment variables, credentials, or config paths are requested. The examples use placeholders for customer info which is appropriate for a booking flow.
Persistence & Privilege
always:false and default invocation settings. The skill does not request permanent presence or modify other skills or system settings.
Assessment
This skill appears internally consistent for booking acupuncture, but take these precautions before installing: 1) The SKILL.md will transmit personal info (name, email, phone) to https://lokuli.com — confirm you trust Lokuli and review its privacy policy. 2) There is no source/homepage provided; verify the publisher or test with dummy data first. 3) Because this is instruction-only, there is no code to inspect—the absence of scanner findings only means there was nothing to analyze, not that the skill is risk-free. 4) If you plan to use real bookings, confirm how authentication/consent is handled (the skill currently shows no required API key or auth flow).

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

latestvk97935gdazrmem7edm8jsr10b180mhad
1.3kdownloads
1stars
2versions
Updated 1mo ago
v1.0.1
MIT-0

uook acupuncture

Book acupuncture 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": "acupuncture",
      "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...