Book Photographer

Book photographer services through Lokuli MCP. Use when user needs to find and book photographer. Triggers on requests like "book a photographer", "find photographer near me", or any photographer 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
medium confidence
Purpose & Capability
Name/description (book a photographer) align with the runtime instructions: the SKILL.md defines search, check_availability, and create_booking JSON-RPC calls against Lokuli's MCP endpoint. Nothing requested (no env vars, no binaries, no config paths) appears unrelated to booking photographers.
Instruction Scope
Instructions are narrowly scoped to performing searches and creating bookings via the specified MCP endpoint. They include placeholders for customer name/email/phone and booking times — meaning PII will be sent to the external endpoint. There are no instructions to read local files, system env, or unrelated resources.
Install Mechanism
This is an instruction‑only skill with no install spec or code files, so nothing is written to disk. Lowest install risk.
Credentials
The skill declares no environment variables or credentials, which is proportionate to the simple instruction set. One caveat: the SKILL.md does not describe authentication for Lokuli; either the hosting platform provides the necessary auth tokens/tools or the integration is unauthenticated. The lack of declared credentials is not contradictory but is worth confirming.
Persistence & Privilege
always is false and the skill does not request elevated or persistent privileges. It does not modify other skills or system settings.
Assessment
This skill appears to do what it says: call Lokuli's MCP endpoints to find and book photographers. Before installing, consider: (1) it will send personal booking details (name, email, phone, date/time, location) to an external domain (lokuli.com) — confirm you are comfortable sharing that PII and review Lokuli's privacy/security if possible; (2) there is no declared authentication in the SKILL.md — check how your platform will provide any needed API keys or whether bookings will be unauthenticated; (3) the skill has no source/homepage and an opaque owner ID — prefer skills from verified or documented publishers when possible; (4) test with non-sensitive/dummy data first and review the agent's tool/network permissions for outbound calls.

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

Current versionv1.0.1
Download zip
latestvk97926nz29kaqr7y9ch15a6c6980nmhd

License

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

SKILL.md

uook photographer

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