The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Juicy Designs Quote listing page.
Request and read-only capabilities for AI agents, exposed two ways:
| Transport | Path | For |
|---|---|---|
| MCP (Streamable HTTP) | POST /mcp | ChatGPT / Claude / agent connectors |
| REST request | POST /quote, POST /strategy-session | Agentic browsers / OpenAPI clients |
| REST read | GET /service-catalog /service-areas /case-studies /client-reviews /faqs | Read reference data |
| Discovery | GET /, GET /openapi.json | Health + machine-readable spec |
| Tool | Type | Purpose |
|---|---|---|
get_quote | request | Submit a free, no-obligation quote request. Consent-gated. |
book_strategy_session | request | Request a free strategy session. Consent-gated. |
get_service_catalog | read | Services + reference "from" floors (reference only). |
get_service_areas | read | Where Juicy Designs works. |
get_case_studies | read | Track record and portfolio pointer. |
get_client_reviews | read | Aggregate Google rating and review source. |
get_faqs | read | Common questions and answers. |
Both request tools share the same server-side validation and the same forwardLead()
sink, which posts the lead to the existing Juicy Designs Apps Script form handler
as form_type=quote — leads land exactly where the website form's leads land
(email + the "Leads" Google Sheet). Read tools return curated static data only; no PII,
no external calls.
consent_to_contact !== true on every request tool (POPIA).Deploy prints the Worker URL, e.g. https://juicy-designs-quote.<subdomain>.workers.dev.
Put that origin into openapi.yaml (servers.url) and wherever you advertise the endpoint.
A request without consent_to_contact:true must come back as an error — that is the POPIA gate working.
Claude (Settings → Connectors → Add custom connector): URL = https://<worker>/mcp.
ChatGPT (Settings → Connectors / Developer mode): add an MCP server with the same /mcp URL.
The connector lists one tool, get_quote. The agent should read the fields back and confirm
consent with the user before calling. No authentication is required (the tool only creates a lead).
After deploy, advertise the endpoints from the site:
/connect/ or a section on /quote/) listing the MCP + OpenAPI URLs.llms.txt (root of juicydesigns.co.za):(Left out of llms.txt until you have the real Worker URL — paste it in post-deploy so there is no dead link.)
| MCP/REST input | sent as | shown in email/sheet |
|---|---|---|
service (enum) | services (label) | Services |
budget_range (enum) | budget (label) | Budget |
project_summary (+ timeline + source) | message | Message |
name / email / phone / company | same | as-is |
form_type | quote | routes to the quote email/template |
Swap the body of forwardLead() in src/index.ts to send leads elsewhere (CRM, webhook, Resend).