Book Dog Trainer

v1.0.1

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

1· 1.3k·0 current·0 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
Name/description align with the runtime instructions: the SKILL.md shows JSON-RPC calls (search, check_availability, create_booking) against Lokuli's MCP endpoint to find and book dog‑trainer services.
Instruction Scope
Instructions are narrowly scoped to searching and booking via the specified MCP endpoint and provide concrete JSON-RPC payload examples. However, the doc includes hard-coded example parameters (zipCode 90640, sample customerName/email/phone) and does not explain how or when to prompt the user for their actual contact info or consent. It also does not describe any authentication flow or token handling for the remote endpoint.
Install Mechanism
Instruction-only skill with no install spec and no code files — lowest install risk; nothing is written to disk by the skill itself.
!
Credentials
The skill declares no required environment variables or credentials, yet it targets an external booking API. Real booking endpoints commonly require API keys, OAuth tokens, or other credentials; the absence of declared credentials or auth guidance is a mismatch that could indicate incomplete documentation or missing security controls. Also, the instructions explicitly send personal contact data (name, email, phone) — appropriate for booking, but users should be warned and consent obtained before transmission.
Persistence & Privilege
Skill does not request persistent or elevated platform privileges (always:false, no config paths). It is user-invocable and does not assert system-wide presence.
What to consider before installing
This skill broadly matches its stated purpose, but several gaps mean you should be cautious before installing: 1) Verify lokuli.com and the MCP endpoint — there is no homepage or owner info in the registry metadata, so confirm the operator's identity and privacy policy. 2) Ask the publisher how authentication is handled; if the booking API requires an API key or OAuth token the skill should declare that and explain storage. 3) Be aware the skill will send personal contact data (name, email, phone) to an external service — ensure you want that transmitted and that explicit user consent will be requested before creating a real booking. 4) The SKILL.md uses a hard-coded ZIP and sample data; test with dummy data first and confirm the skill will prompt for location and contact info rather than auto-booking. If the publisher cannot explain authentication and data handling, do not install.

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

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

uook dog trainer

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