Book Auto

Book auto services through Lokuli MCP. Use when user needs smog checks, oil changes, car detailing, mechanics, tire services, or any automotive service. Triggers on requests like "I need a smog check", "book an oil change", "find a mechanic near me", "car detailing", or any auto service request.

MIT-0 · Free to use, modify, and redistribute. No attribution required.
1 · 1.1k · 0 current installs · 0 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
Name, description, and the SKILL.md all describe finding providers, checking availability, and creating bookings via Lokuli's MCP endpoint; the declared capabilities (search, check_availability, create_booking) match the stated purpose.
Instruction Scope
Instructions stay within booking workflow (collect service and ZIP, search providers, check availability, confirm, create booking). They include examples that will transmit personal contact info (customerName, customerEmail, customerPhone) to https://lokuli.com/mcp/sse; the workflow calls for explicit user confirmation but does not mention privacy/consent checks or what data is required for which steps.
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest install risk. There is no download or external installer.
Credentials
The skill declares no environment variables, credentials, or config paths. That is proportionate to the described behavior, though the SKILL.md also omits any mention of required API keys or auth tokens that an MCP service might typically require.
Persistence & Privilege
always is false and there is no request to modify agent/system config or persist credentials. The skill does not request elevated or permanent presence.
Assessment
This skill appears coherent for booking auto services, but it will send user contact information to an external endpoint (https://lokuli.com). Before installing or using it: 1) Verify the provider (lokuli.com) and its privacy policy; 2) Confirm how authentication is handled (the SKILL.md provides no API key or auth flow); 3) Ensure you obtain explicit user consent before transmitting PII (email/phone); 4) Test with non-sensitive/demo data first; 5) If you need guarantees about data handling, ask the skill author for details (owner/ homepage) or avoid using it until provenance and auth are clear.

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

Current versionv1.0.0
Download zip
latestvk976mtqahh5vd1mrbn7w4xn1nx80nqyg

License

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

SKILL.md

Book Auto Services

Book automotive services through Lokuli's MCP server.

MCP Endpoint

https://lokuli.com/mcp/sse

Transport: SSE | JSON-RPC 2.0 | POST requests

Auto Services Available

  • Smog Check
  • Oil Change
  • Car Detailing
  • Mechanic
  • Tire Services
  • Brake Service
  • Car Wash
  • Auto Body Repair

Tools

search

{
  "method": "tools/call",
  "params": {
    "name": "search",
    "arguments": {
      "query": "smog check",
      "zipCode": "90640",
      "category": "Auto Services",
      "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"
    }
  }
}

Workflow

  1. Understand — What auto service? Where (ZIP)?
  2. Search — Find matching providers
  3. Present — Show top results with pricing
  4. Check availability — Get open time slots
  5. Confirm — Get explicit user approval
  6. Create booking — Generate checkout link

Files

1 total
Select a file
Select a file to preview.

Comments

Loading comments…