Install
openclaw skills install book-dog-walkerBook dog-walker services through Lokuli MCP. Use when user needs to find and book dog-walker. Triggers on requests like "book a dog-walker", "find dog-walker near me", or any dog-walker service request.
openclaw skills install book-dog-walkerBook dog-walker 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": "dog-walker",
"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"
}
}
}