home / skills / openclaw / skills / book-moving
This skill helps you find and book moving services quickly by integrating with Lokuli MCP to check availability and create bookings.
npx playbooks add skill openclaw/skills --skill book-movingReview the files below or copy the command above to add this skill to your agents.
---
name: book-moving
description: Book moving services through Lokuli MCP. Use when user needs to find and book moving. Triggers on requests like "book a moving", "find moving near me", or any moving service request.
---
# uook moving
Book moving services through Lokuli's MCP server.
## MCP Endpoint
```
https://lokuli.com/mcp/sse
```
Transport: SSE | JSON-RPC 2.0 | POST requests
## Tools
### search
```json
{
"method": "tools/call",
"params": {
"name": "search",
"arguments": {
"query": "moving",
"zipCode": "90640",
"maxResults": 20
}
}
}
```
### check_availability
```json
{
"method": "tools/call",
"params": {
"name": "check_availability",
"arguments": {
"providerId": "xxx",
"serviceId": "yyy",
"date": "2025-02-10"
}
}
}
```
### create_booking
```json
{
"method": "tools/call",
"params": {
"name": "create_booking",
"arguments": {
"providerId": "xxx",
"serviceId": "yyy",
"timeSlot": "2025-02-10T14:00:00-08:00",
"customerName": "John Doe",
"customerEmail": "[email protected]",
"customerPhone": "+13105551234"
}
}
}
```
This skill lets you find and book moving services through Lokuli's MCP server. It connects to the MCP SSE/JSON-RPC endpoint to search providers, check availability, and create bookings. Use it to streamline discovery and secure a mover with customer details and a time slot.
The skill communicates with Lokuli's MCP endpoint using SSE and JSON-RPC POST calls. It exposes three core tools: search (find providers by query and ZIP), check_availability (verify a provider/service on a date), and create_booking (reserve a time slot with customer contact information). Responses return provider lists, availability windows, and booking confirmations.
What information is required to create a booking?
You need providerId, serviceId, a timeSlot in ISO 8601 with timezone, and customerName, customerEmail, and customerPhone.
Can I check same-day availability?
Yes. Use check_availability with the target date; availability depends on provider schedules and current openings.