Book Videographer

v1.0.1

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

0· 1.3k·0 current·0 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description align with the runtime instructions: the SKILL.md defines search, availability check, and booking JSON-RPC calls for finding and booking videographers. There are no unrelated environment variables, binaries, or installs requested.
Instruction Scope
Instructions focus on booking workflow (search, check_availability, create_booking). They reference an external MCP endpoint (https://lokuli.com/mcp/sse) and include example customer data and placeholders. The skill does not instruct reading local files or unrelated system state. It also does not document authentication/authorization for the MCP endpoint (how requests are permitted/trusted is unspecified).
Install Mechanism
No install spec and no code files — instruction-only skill. Nothing is downloaded or written to disk by the skill itself.
Credentials
The skill requests no environment variables or credentials, which is proportional. However, it will send (or instruct sending) user contact/booking information to an external domain (lokuli.com). That transmission is expected for a booking service but is a privacy consideration — the SKILL.md doesn't document authentication or where user data will be stored or how it's protected.
Persistence & Privilege
always:false (no forced inclusion). The skill does not request persistent system privileges or modify other skills/config. Autonomous invocation is allowed by default, which is normal for skills.
Assessment
This skill appears to do what it says: call Lokuli's MCP to search and book videographers. Before installing/use: (1) confirm you trust the external domain (lokuli.com) and its privacy/terms because booking requires sending personal contact details; (2) ask how authentication to the MCP endpoint is handled — the SKILL.md gives no auth instructions; (3) avoid providing sensitive PII unless you explicitly trust the service; (4) remember this is instruction-only so it won't install code locally, but it will cause network requests when invoked. If you need stronger guarantees, request documentation or an official homepage/source for Lokuli and verify the integration details.

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

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

uook videographer

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