Book Web Developer
Book web-developer services through Lokuli MCP. Use when user needs to find and book web-developer. Triggers on requests like "book a web-developer", "find web-developer near me", or any web-developer service request.
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 0 · 1.3k · 0 current installs · 0 all-time installs
byLokuli@edwardrodriguez703-design
MIT-0
Security Scan
OpenClaw
Suspicious
medium confidencePurpose & Capability
Name and description align with the instructions: the SKILL.md shows JSON-RPC calls (search, check_availability, create_booking) to a Lokuli MCP endpoint for booking developers. This is coherent for a booking skill, but examples include hard-coded zip code, dates, and placeholder customer data which suggests the document is incomplete or not production-ready.
Instruction Scope
The runtime instructions are narrowly scoped to searching providers, checking availability, and creating bookings via the declared MCP endpoint and tool calls; they do not instruct reading local files, system credentials, or unrelated data sources.
Install Mechanism
This is an instruction-only skill with no install spec or code files, so there is no install-time code being downloaded or written to disk.
Credentials
No environment variables or credentials are declared, yet the MCP endpoint is external and likely requires authentication or API keys in practice. The SKILL.md provides no guidance on auth, error handling, or where credentials would come from; that omission is suspicious because a booking API typically needs some form of auth and/or user consent before transmitting personal data (name, email, phone).
Persistence & Privilege
Skill does not request persistent installation privileges (always is false) and does not attempt to modify other skills or system-wide settings.
What to consider before installing
This skill appears to implement booking flows against an external Lokuli MCP endpoint and is otherwise reasonably scoped, but it has several red flags you should resolve before using it with real data: 1) Confirm who runs lokuli.com and whether you trust that service; 2) Ask the author or maintainer how authentication is handled (this SKILL.md provides no API key/token instructions); 3) Verify the host is official and that your agent platform supplies any needed credentials securely (do not paste secrets into the skill text); 4) Test with dummy/pseudonymous customer data first (the examples contain real-looking placeholders); 5) Request a clearer SKILL.md that removes hard-coded zip/dates and explains error handling and consent for transmitting personal info. If you cannot get answers about authentication and the endpoint’s trustworthiness, treat this skill as unsafe for real bookings.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.1
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
SKILL.md
uook weu developer
Book web-developer 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": "web-developer",
"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 totalSelect a file
Select a file to preview.
Comments
Loading comments…
