Book Mechanic

v1.0.1

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

1· 1.3k·0 current·0 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
Name/description match the instructions: the SKILL.md defines search, check_availability, and create_booking calls for mechanic bookings via Lokuli's MCP. However, the skill references an external endpoint (https://lokuli.com/mcp/sse) while declaring no credentials or configuration; that's an unexplained gap (how does the agent authenticate/authorize to use the MCP?).
!
Instruction Scope
The runtime instructions instruct the agent to initiate JSON-RPC/SSE calls to an external server and to send customer-identifying data (name, email, phone). The SKILL.md does not restrict what customer data is sent, ask for user consent, or explain data retention. That broad transmission of PII to an externally-hosted service is a scope/privacy concern.
Install Mechanism
This is an instruction-only skill with no install spec and no code files, so nothing is written to disk and there is no installer or third-party package to evaluate.
!
Credentials
The skill declares no required environment variables or credentials, yet it points to a third-party API endpoint that in practice likely requires authentication. The absence of declared auth variables (API key, token) or guidance how requests are authorized is a mismatch and could lead to inadvertent unauthenticated requests or attempts to send sensitive data without clear safeguards.
Persistence & Privilege
The skill does not request persistent installation, 'always' is false, and it does not modify other skills or system-wide settings. It does, however, allow normal autonomous invocation (platform default), which increases blast radius if the skill is later found malicious — but that alone is not a protocol violation.
What to consider before installing
Before installing or using this skill, verify the legitimacy of lokuli.com and the MCP API (homepage, docs, privacy policy). Ask how the agent will authenticate (API key, OAuth) and why no credentials are declared in the skill metadata. Confirm what user data is required, how long it's retained, and whether bookings are sent only after explicit user consent. If you cannot verify the vendor and the auth/PII handling, avoid sending real customer information (test with dummy data) or restrict the skill's network access. If you proceed, monitor network calls and logs and limit the personal data you provide.

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

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

uook mechanic

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