Monterey integrates Claude AI for two real-time features: template editing and brand guide management. Both use WebSocket connections for streaming responses.Documentation Index
Fetch the complete documentation index at: https://montereyfinancial.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Template AI
The template AI assistant helps generate and refine email template HTML content.Connection
Connect via WebSocket with a JWT token:token(required): JWT bearer token for authenticationsession_id(optional): UUID to resume a previous session. Sessions have a 2-hour TTL.
Rate limits
- 10 requests per minute per user
- Sessions expire after 2 hours of inactivity
Message types
Send JSON messages through the WebSocket:- Generate
- Edit
- Cancel
Generate a new template from a text prompt.
Brand guide AI
The brand guide AI manages workspace brand guidelines through a conversational interface.Connection
Brand guides
Brand guides store workspace-level branding rules that inform AI template generation:| Operation | Endpoint |
|---|---|
| List | GET /brand-guides/ |
| Get | GET /brand-guides/{id} |
| Create | POST /brand-guides/ |
| Update | PUT /brand-guides/{id} |
| Delete | DELETE /brand-guides/{id} |

