# Lokuli Service Booking
Book real services through Lokuli's MCP server.
## MCP Endpoint
```
https://lokuli.com/mcp/sse
```
Transport: SSE | JSON-RPC 2.0 | POST requests
## Tools
### search
Find services by query and location.
```json
{
"method": "tools/call",
"params": {
"name": "search",
"arguments": {
"query": "smog check",
"zipCode": "90640",
"category": "Auto Services",
"maxResults": 20
}
}
}
```
- `query` (required): What to search for
- `zipCode`: ZIP code to search near
- `category`: One of: Auto Services, Music & Audio, Beauty Services, Health & Wellness, Tattoo & Body Art, Tech Repair, Tutoring & Education, Home Services, Photography & Video, Events
- `maxResults`: 1-50, default 20
### fetch
Get detailed provider info.
```json
{
"method": "tools/call",
"params": {
"name": "fetch",
"arguments": {
"id": "provider_id_from_search"
}
}
}
```
### check_availability
Get available time slots.
```json
{
"method": "tools/call",
"params": {
"name": "check_availability",
"arguments": {
"providerId": "xxx",
"serviceId": "yyy",
"date": "2025-02-10"
}
}
}
```
### create_booking
Book and get Stripe payment link.
```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": "john@example.com",
"customerPhone": "+13105551234"
}
}
}
```
Returns Stripe checkout URL for payment.
### get_booking
Check booking status.
```json
{
"method": "tools/call",
"params": {
"name": "get_booking",
"arguments": {
"bookingId": "stripe_session_id"
}
}
}
```
### get_service_catalog
List all 75+ service types.
```json
{
"method": "tools/call",
"params": {
"name": "get_service_catalog",
"arguments": {
"category": "All"
}
}
}
```
### ge...
{ copied = true; setTimeout(() => copied = false, 2000) })"
class="absolute right-3 top-3 rounded-lg bg-slate-700 px-3 py-1.5 text-xs font-bold text-slate-200 hover:bg-slate-600 transition"
x-text="copied ? '已复制' : '复制'">