2.6k
GitHub Stars
2
Bundled Files
2 months ago
Catalog Refreshed
4 months ago
First Indexed
Readme & install
Copy the install command, review bundled files from the catalogue, and read any extended description pulled from the listing source.
Installation
Preview and clipboard use veilstrat where the catalogue uses aiagentskills.
npx veilstrat add skill openclaw/skills --skill book-acupuncture- _meta.json303 B
- SKILL.md1.2 KB
Overview
This skill books acupuncture services through Lokuli's MCP server. It helps find nearby acupuncture providers, check availability, and create bookings using the MCP SSE JSON-RPC endpoints. Use it to secure appointments quickly with validated provider and service IDs.
How this skill works
The skill issues JSON-RPC POST requests to Lokuli's MCP SSE endpoint to search providers, verify appointment slots, and create bookings. Key tools include search (by query and zip code), check_availability (by providerId/serviceId/date), and create_booking (time slot and customer details). Responses return structured results for selection and confirmation.
When to use it
- You need to find acupuncture providers near a specific zip code or area.
- You want to confirm available appointment dates before booking.
- You need to create a booking with customer contact details and a chosen time slot.
- You want to automate booking flows for multiple providers or services.
- You need to verify a providerId and serviceId before scheduling.
Best practices
- Always run check_availability before create_booking to avoid conflicts.
- Validate providerId and serviceId from the search results to ensure correct booking target.
- Include full customer contact details (name, email, phone) and the correct timezone for timeSlot.
- Limit maxResults in search to a manageable number to speed selection.
- Handle errors and confirmations from the MCP endpoint and surface clear next steps to users.
Example use cases
- Find acupuncture clinics within a zip code and list available services for user selection.
- Check availability for a chosen provider on a particular date before presenting time slots.
- Create a confirmed booking for a user with their name, email, phone, and chosen time slot.
- Automate recurring appointment scheduling by checking and reserving future time slots.
- Integrate into a health assistant to combine acupuncture booking with other wellness services.
FAQ
You need providerId, serviceId, a valid ISO 8601 timeSlot with timezone, and customerName, customerEmail, and customerPhone.
How do I avoid double-booking?
Always call check_availability for the providerId/serviceId and date before calling create_booking to confirm the slot is free.