Back to MCP Servers

Cellar

Hybrid computer-use runtime. Fuses accessibility tree + Chrome DevTools Protocol + vision into structured context with per-element confidence. 4 MCP tools (see/act/think/perceive). Continuous awareness engine (Cortex) with freshness + side-effect detection. Works offline with Ol…

os-automation
By dimpagk92
61Updated 1 week agoRustApache-2.0

Installation

npx -y cellar

Configuration

{
  "mcpServers": {
    "cellar": {
      "command": "npx",
      "args": ["-y", "cellar"]
    }
  }
}

How to use

  1. Run the installation command above (if needed)
  2. Open your Claude Code settings file (~/.claude/settings.json)
  3. Add the configuration to the mcpServers section
  4. Restart Claude Code to apply changes

CEL OSS

CEL is the open context and trust data plane for AI agents.

CEL gives agent builders reusable contracts for four things every serious agent runtime needs:

  • fuse many sources into one canonical context snapshot
  • persist cross-turn memory locally or behind your own backend
  • assemble governed model briefs with receipts
  • inspect what the agent saw, remembered, sent to the model, and later claimed

The open project is intentionally not the full Cellar runtime. The live cortex engine, policy enforcement, monitoring, compliance workflows, hosted workers, and GUI surfaces are the commercial Cellar/Dilipod operating layer built on these contracts.

OSS Crates

Each crate is published on crates.io and maintained in a standalone repository. This workspace (cellar-oss) mirrors them for integrated examples and shared docs.

CrateRepositoryRoleStart here
cel-contextcrates.ioContextElement / ContextSnapshot model and merge mechanicsdocs/concepts/context.md
cel-memorycrates.ioMemory trait, sessions, scopes, write hooksdocs/concepts/memory.md · BACKENDS.md
cel-memory-sqlitecrates.ioLocal SQLite + vector + FTS backenddocs/concepts/memory.md
cel-briefcrates.ioBrief assembly, budgeting, governance, receiptsdocs/concepts/brief.md
cel-contractscrates.ioAction, planning, and execution receipt schemasdocs/concepts/receipts.md
cel-summarizercrates.ioLLM summarizers for session rollups (Anthropic + Ollama)docs/migration-0.2.md

Current release line: 0.2.0 on crates.io. Upgrading from 0.1.x? See docs/migration-0.2.md.

See docs/crates.md for the full crate matrix.

Architecture

+------------------------------------------------------------+
| Agents       LangGraph | Mastra | Claude Code | Cursor     |
|              Codex | GPT | Gemini | n8n | MCP clients     |
+------------------------------------------------------------+
| Cellar       live cortex runtime, policy, monitoring,       |
| runtime      compliance, hosted execution, GUI workflows    |
+------------------------------------------------------------+
| CEL OSS      context snapshots, memory, brief assembly,     |
| contracts    transport schemas, receipts                    |
+------------------------------------------------------------+
| Sources      browser | desktop apps | logs | traces | APIs  |
+------------------------------------------------------------+

Quickstart

Use the OSS contracts without the full runtime. Clone a standalone crate repo, or run from this workspace:

# standalone repo (from repo root)
cargo run --example context_snapshot -- --json
cargo run --example basic
cargo run --example standalone
cargo run --features memory --example with_memory

# this workspace
cargo run -p cel-context --example context_snapshot -- --json
cargo run -p cel-memory --example basic
cargo run -p cel-memory-sqlite --example basic
cargo run -p cel-brief --example standalone
cargo run -p cel-brief --features memory --example with_memory

For a guided path, read docs/quickstart.md.

Examples

The top-level examples are organized by job-to-be-done:

Commercial Boundary

Open CEL provides the contracts. Cellar/Dilipod operates those contracts in a live environment:

Open CELCommercial Cellar/Dilipod
Context schema and merge contractsLive cortex runtime
Memory and SQLite backendPolicy enforcement and approvals
Brief assembly and brief receiptsMonitoring, alerting, audit timeline
Receipt and transport schemasCompliance exports and hosted workers

See docs/oss-boundary.md and docs/commercial-model.md.

License

Open CEL crates and docs are Apache-2.0 unless a subdirectory states otherwise.

View source on GitHub