Book Event Planner

Book event-planner services through Lokuli MCP. Use when user needs to find and book event-planner. Triggers on requests like "book a event-planner", "find event-planner near me", or any event-planner 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
Suspicious
medium confidence
Purpose & Capability
The name/description match the instructions: the skill claims to book event-planner services via Lokuli's MCP. It does not request credentials or binaries, which can be reasonable for an instruction-only skill that relies on platform tooling. However, the SKILL.md references a direct MCP endpoint (https://lokuli.com/mcp/sse) while the example calls use a generic "tools/call" JSON-RPC wrapper (search, check_availability, create_booking) without explaining how those tool calls map to the Lokuli endpoint or how authentication (if any) is handled.
Instruction Scope
Instructions are narrowly scoped to searching, checking availability, and creating bookings and do not ask the agent to read files or environment variables. Concerns: (1) sample payloads contain hard-coded data (zipCode: 90640, and sample customer PII) and dated example timestamps — these could lead to accidental or inappropriate bookings if the agent uses examples verbatim; (2) omission of how/when to obtain user consent before calling create_booking; and (3) unclear mapping between the stated MCP endpoint and the provided "tools/call" RPC examples.
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest risk for installation. Nothing is written to disk by the skill itself.
Credentials
The skill declares no required environment variables or credentials. That is proportionate for a simple search/booking skill; however, the presence of an external endpoint suggests there may be an undocumented authentication requirement (API key, token) in real usage — the SKILL.md does not address this.
Persistence & Privilege
The skill is not force-enabled (always: false) and uses the platform's normal invocation model. It does not request persistent system-level privileges in its metadata or instructions.
What to consider before installing
This skill is plausibly what it claims, but before installing or using it you should: (1) confirm how the platform maps the "tools/call" RPCs to the Lokuli MCP endpoint and whether any API keys or auth are required and where they are stored; (2) ensure the agent will request explicit user confirmation before calling create_booking (to avoid accidental real bookings or charges); (3) remove or replace hard-coded sample PII and zip code so the agent uses the user's actual location and details; (4) verify the legitimacy of https://lokuli.com and its privacy/terms (you don't want your customers' data sent to an unknown service); (5) test in a safe/non-production mode (dry-run) to confirm behavior. These gaps are likely due to sloppy/incomplete documentation rather than malicious intent, but they should be resolved before use.

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

Current versionv1.0.1
Download zip
latestvk9744rz8gt3mgftvad5syj40f580mf2y

License

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

SKILL.md

uook event planner

Book event-planner 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": "event-planner",
      "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…