Install
openclaw skills install book-nailsBook nails services through Lokuli MCP. Use when user needs to find and book nails. Triggers on requests like "book a nails", "find nails near me", or any nails service request.
openclaw skills install book-nailsBook nails services through Lokuli's MCP server.
https://lokuli.com/mcp/sse
Transport: SSE | JSON-RPC 2.0 | POST requests
{
"method": "tools/call",
"params": {
"name": "search",
"arguments": {
"query": "nails",
"zipCode": "90640",
"maxResults": 20
}
}
}
{
"method": "tools/call",
"params": {
"name": "check_availability",
"arguments": {
"providerId": "xxx",
"serviceId": "yyy",
"date": "2025-02-10"
}
}
}
{
"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"
}
}
}