Book Bartender

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

MIT-0 · Free to use, modify, and redistribute. No attribution required.
1 · 1.2k · 0 current installs · 0 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
Name/description match the instructions: the SKILL.md describes searching and creating bookings via Lokuli's MCP. Requiring external JSON-RPC calls to a booking MCP is coherent with the stated purpose. However, the SKILL.md contains hardcoded example parameters (zipCode 90640, sample customer info) and placeholder IDs (xxx/yyy) instead of describing how real credentials/IDs are obtained, which reduces clarity about how the capability will function in practice.
!
Instruction Scope
Runtime instructions send customer-identifying data (name, email, phone, zip code) to an external endpoint (https://lokuli.com/mcp/sse). The skill does not document authentication, consent, or data handling; it also hardcodes a zip code and example dates/times (some are in the past). The instructions are permissive about sending PII to an external service and leave critical details (how providerId/serviceId are resolved, how to obtain user consent) unspecified.
Install Mechanism
Instruction-only skill; no install spec, no downloads, and no code files. This minimizes installation risk because nothing is written to disk by an installer.
!
Credentials
The skill declares no required environment variables or credentials but calls an external MCP endpoint that likely requires authentication in real use. The lack of declared auth, tokens, or guidance about where provider IDs come from is disproportionate: either the platform is expected to mediate calls (not documented) or credentials are omitted. Also, sending user PII externally without describing consent or privacy handling is a proportionality concern.
Persistence & Privilege
always is false and the skill does not request to persist or modify other agent/system configurations. It does not request elevated platform presence.
What to consider before installing
This skill appears to implement bartender booking via Lokuli's MCP and will send personal data (name, email, phone, location) to https://lokuli.com/mcp/sse. Before installing or enabling it, verify the service owner (homepage or contact), confirm how authentication is handled (the SKILL.md provides no auth or token requirements), ensure you and your users consent to sending PII to that domain, and ask the author to remove hardcoded example data and explain how providerId/serviceId are resolved. If you cannot verify Lokuli's legitimacy or how credentials are managed, treat the skill with caution or avoid installing it.

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

Current versionv1.0.1
Download zip
latestvk9733zc6eddyk5jhzja9fkd4r580nv80

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

SKILL.md

uook uartender

Book bartender 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": "bartender",
      "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 total
Select a file
Select a file to preview.

Comments

Loading comments…