概要
What is Juicy Designs Quote?
Juicy Designs Quote is an MCP server and REST API (deployed as a Cloudflare Worker) that gives AI agents read-only access to Juicy Designs’ service catalog, case studies, client reviews, FAQs, and the ability to submit consent‑gated quote requests and strategy session bookings. Leads are forwarded to the existing Juicy Designs Apps Script form handler, landing in the same email and Google Sheet as website form submissions.
How to use Juicy Designs Quote?
Deploy by cloning the repository, installing dependencies, setting the LEAD_ENDPOINT secret with the existing Apps Script URL, and running npx wrangler deploy. Connect any MCP client (e.g., Claude under Settings → Connectors) to the worker’s /mcp endpoint, or call the REST endpoints directly at POST /quote and POST /strategy-session. The server accepts no authentication and never returns or implies a price.
Key features of Juicy Designs Quote
- Two request tools:
get_quoteandbook_strategy_session, both consent‑gated - Five read tools: service catalog, service areas, case studies, client reviews, FAQs
- All input validated server‑side; model extraction is never trusted
- Quotes are never returned; only receipt confirmation with a four‑working‑hour SLA
- Leads land in the existing Juicy Designs email and Google Sheet
- Supports both MCP (Streamable HTTP) and REST transports
Use cases of Juicy Designs Quote
- An AI chatbot on a portfolio site collects visitor project details and submits a quote request
- An agentic browser reads case studies and client reviews to answer “What has Juicy Designs done before?”
- A connected assistant checks service areas before recommending a design consultation
- A developer integrates the REST API into a custom intake flow that posts leads to the same backend
FAQ from Juicy Designs Quote
Does Juicy Designs Quote require authentication?
No. The server does not require any authentication; the request tools only create a lead in the existing system.
Where do submitted leads go?
Leads are forwarded to the Juicy Designs Apps Script form handler as form_type=quote, landing in the same email and the “Leads” Google Sheet that the website form uses.
Can the server provide pricing or estimates?
No. It never returns or implies a price. Published “from” figures are entry‑point references only and are never a quote or estimate. It confirms receipt and the four‑working‑hour SLA only.
What are the rate limits?
By default no per‑IP rate limit is enforced, but the underlying Apps Script handler throttles at 5 requests per 10 minutes. An optional Cloudflare KV‑based rate limit can be enabled.
What transports and data are available?
MCP (Streamable HTTP) at POST /mcp and REST at POST /quote and POST /strategy-session. Read tools return curated static data; no PII or external calls are made.