Tier 0: Page-Scoped
The simplest deployment operates entirely within a single page with no network calls to Char’s backend. What you get:- Embedded chat UI with full styling control
- WebMCP tools scoped to the current page
- Conversation stored in browser memory only
- No persistent history—refreshing clears the conversation
- No cross-app tools—each page is isolated
- No user tracking or analytics
- No connection to the Tool Hub
Tier 1: User-Scoped Tool Hub
Adding authentication unlocks Char’s defining capability: cross-application tool access. What changes:- Tool Hub — Each user gets a personal hub that aggregates tools across all their applications
- Cross-app tools — An agent in one app can invoke tools from another
- Session inheritance — The agent operates with the user’s existing permissions
- Persistent threads — Conversations survive page refresh and browser restarts
- MCP server surface — External clients like Claude Desktop can connect to the user’s tool registry
Tier 2: Enterprise Governance
Add policy controls and audit capabilities for regulated environments. Additional capabilities:| Feature | Description |
|---|---|
| Tool classification | Categorize tools as read / write / exfil |
| Approval workflows | Require user confirmation for sensitive operations |
| Role-based visibility | Control which tools each role can see |
| Decision traces | Audit log of every tool invocation |
| Kill switch | Instantly disable tools or providers |
- Financial services with compliance requirements
- Healthcare with HIPAA considerations
- Any environment requiring audit trails
Comparison
| Capability | Tier 0 | Tier 1 | Tier 2 |
|---|---|---|---|
| Embedded chat | Yes | Yes | Yes |
| Page-scoped tools | Yes | Yes | Yes |
| Persistent threads | No | Yes | Yes |
| Cross-app tools | No | Yes | Yes |
| MCP client access | No | Yes | Yes |
| Tool classification | No | No | Yes |
| Approval workflows | No | No | Yes |
| Decision traces | No | No | Yes |
| Kill switch | No | No | Yes |
Progressive Adoption
The tiers are designed for incremental adoption. Each tier builds on the previous, so tools and configurations carry forward:- Tier 0 → Tier 1: Add authentication. Your existing tools automatically publish to the Tool Hub.
- Tier 1 → Tier 2: Configure policies. Your existing cross-app workflows gain governance controls.
Development vs Production
Tier 0 includes a development mode that bypasses Char’s backend entirely, useful for local testing without authentication. This mode should never reach production—API keys embedded in HTML are visible to users.For implementation details, see the Quickstart and Embedding guide.

