In development
The hosted layer for the open-source email editor.
AI, MCP, real-time collaboration, comments, a media library, template scoring, and a headless API — on top of Templatical's OSS Vue 3 editor.
What Cloud adds.
Six highlights below. 5 more on the features page.
AI Assistant
Generate, rewrite, and redesign with a prompt.
MCP Integration
AI agents with hands on the template.
Real-time Collaboration
Multiple editors, zero conflicts.
Inline Comments
Review threads anchored to blocks.
Media Library
Central asset store with folders and search.
Template Scoring
Automated quality checks before you send.
Self-host the OSS. Flip to Cloud when you need more.
Same editor, same JSON, same MJML renderer. Export templates any time. No proprietary lock-in.
The open-source core stays open source.
// Self-hosted OSS
import { init } from '@templatical/editor';
const editor = await init({
container: '#editor',
});
// When ready — flip a switch.
import { initCloud } from '@templatical/editor';
const editor = await initCloud({
container: '#editor',
auth: { url: '/api/token' },
});