Book Tune Up

v1.0.1

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

0· 1.3k·0 current·0 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
The name/description match the instructions: the SKILL.md shows JSON-RPC calls for searching providers, checking availability, and creating bookings on Lokuli's MCP. That capability is coherent with 'book tune-up' functionality. However, the skill references an external MCP endpoint but declares no credentials or auth mechanism, which is unusual for a booking API and worth questioning.
!
Instruction Scope
Instructions explicitly reference an external endpoint (https://lokuli.com/mcp/sse) and example JSON-RPC payloads containing personal data fields (customerName, customerEmail, customerPhone). The instructions do not explain how to authenticate, where the tools/call is executed (agent-side vs proxied), or whether user consent or data-minimization should be applied. Also the transport description mixes SSE (typically an event stream) with POST/JSON-RPC which is atypical and may indicate sloppy or inaccurate instructions.
Install Mechanism
Instruction-only skill with no install/spec files and no code to write to disk. Low installation risk.
!
Credentials
The skill requests no environment variables or credentials but instructs the agent to call an external booking API and transmit personal contact data. Real booking APIs commonly require API keys, OAuth tokens, or other auth; the absence of declared credentials or a documented auth flow is a proportionality mismatch and increases uncertainty about where/how sensitive data is sent.
Persistence & Privilege
always is false and autonomous invocation is allowed (platform default). The skill does not request persistent system-wide privileges or declare modifications to other skills' configs.
What to consider before installing
This skill will send booking requests and customer contact details to an external domain (lokuli.com) but does not document how it authenticates or protects that data. Before installing, verify: (1) who operates lokuli.com and whether you trust them; (2) whether the platform will proxy/authenticate calls or whether you must provide API credentials (ask the skill author for the auth flow); (3) how user PII is handled and retained by the service; and (4) clarify the transport/auth mismatch (SSE vs POST). If you need to protect personal data or avoid sharing credentials, do not enable the skill until these questions are answered.

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

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

uook tune up

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