Book Oil Change

Book oil-change services through Lokuli MCP. Use when user needs to find and book oil-change. Triggers on requests like "book a oil-change", "find oil-change near me", or any oil-change 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
Benign
high confidence
Purpose & Capability
Name/description match the runtime instructions: the SKILL.md describes calling Lokuli's MCP (search, check_availability, create_booking). No unrelated binaries, env vars, or installs are requested, so the requested capabilities are proportional to booking oil-change services.
Instruction Scope
SKILL.md is narrow and focused on using Lokuli's MCP (SSE/JSON-RPC) and three tool calls. It includes example hardcoded values (zip 90640, sample dates, and sample customer contact info) and placeholder provider/service IDs ("xxx","yyy"). The spec assumes the agent runtime implements tools/call and network access to https://lokuli.com; the skill does not instruct reading local files or other system data. Recommend confirming the agent will replace example data with the actual user-provided location and personal details and will ask for explicit consent before sending PII.
Install Mechanism
No install spec and no code files — instruction-only. This is lowest-risk from an install perspective (nothing is written to disk by the skill itself).
Credentials
The skill requests no environment variables or credentials, which is proportionate. It does send (or will need to send) customer name/email/phone as part of bookings — that is expected for booking functionality, but users should be aware PII will be transmitted to the third-party endpoint.
Persistence & Privilege
always is false and there are no requests to modify agent-wide settings or other skills. The skill does not request persistent presence or elevated privileges.
Assessment
This skill is coherent for booking oil changes: it calls a Lokuli MCP endpoint and does not request keys or install code. Before using it, verify that lokuli.com is a legitimate service you trust, and confirm the agent will ask you for your real zip code, preferred time, and contact details rather than using the example data embedded in SKILL.md. Remember that bookings will transmit your name/email/phone to the external endpoint — don't proceed if you don't want to share that PII. Also ask the agent to show the exact booking details (provider, price, time) and require your explicit approval before creating a booking.

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

Current versionv1.0.1
Download zip
latestvk97bhwj8f0wesj2ws9sdtvtd1x80np2t

License

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

SKILL.md

uook oil change

Book oil-change 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": "oil-change",
      "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…