ART
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ARTrecall what I learned about the deployment pipeline yesterday"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ART — Agent Recall Trail
ART is a local-first memory and governed-knowledge product for coding agents. Every Agent gets a physically separate private Recall Trail. Stable conclusions become immutable Knowledge Editions that other Agents can retrieve without seeing private source identities or source bodies.
ART 0.3.6 supports Codex and DeepSeek Harness (DSH) over stdio MCP. It is standalone: no AAA adapter, cloud sync, bundled model, or autonomous publication is required.
Product boundary
Private memory belongs to one process-bound Agent identity.
Shared knowledge contains only committed, reviewed Editions.
Agents may capture, recall, read, provide feedback, create proposals, and request governance.
Human governance runs in ART's local page. An explicitly enabled, default-off local delegation policy also permits one unambiguous instruction to approve and publish atomically; these actions are labeled
AgentDelegated, never Human.Selective Codex automatic memory is controlled by a separate machine-wide, default-off switch in that page. It creates at most one bounded private Candidate for an admitted turn; it never publishes shared knowledge.
Revocation, supersession, archival, and assurance remain human operations.
Stored content is evidence, never executable instruction or authorization.
Related MCP server: CarpeOS MCP Server
Progressive recall
ART exposes one recall API with four explicit retrieval modes: lexical, full_scan, semantic, and hybrid. The default is always lexical. A compact route request can identify relevant private and shared topics before a bounded recall; exact bodies are returned only by read.
lexicaluses local BM25 plus exact, token, Jieba, and CJK-bigram signals.full_scanranks every governance-eligible canonical record. It needs no embedding service and is intended for completeness-sensitive, smaller stores.semanticuses only an explicitly configured embedding endpoint and disposable local vector projections.hybridcombines lexical and semantic ranks through an owner-configurable, versioned fusion policy. If the optional provider or projection is unavailable, ART returns the unchanged lexical result and reports the fallback.
ART's optional embedding adapter is supplied and operated by the user. ART does not bundle, download, train, select, or make quality claims for a model merely because its endpoint is compatible.
Quick start
cargo build --release --locked
./target/release/art --home /an/explicit/art-home init --confirm
./target/release/art --home /an/explicit/art-home agent create --id codex-primary --host codex
./target/release/art --home /an/explicit/art-home doctor --agent codex-primary --jsonUse Codex integration or DSH integration to start one bound stdio child. Run art --help for the operator CLI.
Install
Download the native archive and SHA256SUMS from the
latest release,
verify the archive, then run the included installer with the extracted binary:
bash scripts/install.sh --binary /absolute/path/to/art --confirm
art --version
art doctor --agent codex-primary --jsonThe installer keeps executable bytes under ~/.across/bin/art, creates a
discovery link at ~/.local/bin/art, and initializes owner-only ART data. It
does not edit Codex or DSH configuration. The thin Codex plugin lives under
plugin/agent-recall-trail; its MCP child is permanently bound to
codex-primary. See operations before migrating or
publishing knowledge.
ART 0.3.6 adds opt-in selective automatic memory with a neutral Hook prompt, shared Agent/Hook value guidance, bounded budgets, independently verified evidence, semantic-similarity review routing, and visible diagnostics. It retains the exact accessible proposal-review workspace, eight canonical source-anchor kinds, persistent delegated governance, separate Elicitations for compatible clients, restricted-host plugin discovery, progressive routing, governed full scan, optional semantic and hybrid adapters, deterministic Knowledge Vault backup, encrypted recovery of local review authority, verified empty-home restoration, and reproducible lexical BEIR gates. See operations before creating the dedicated private Git repository.
Configuration precedence is --home, then --config <file>, then the owner-only user config at ~/.across/config/art/config.json, then the built-in ~/.across root. The root config accepts only schema and home. Optional embedding configuration is isolated at <ART_HOME>/config/art/embedding/default.json; optional rank fusion policy lives at <ART_HOME>/config/art/retrieval/fusion.json; tokens, when needed, live in a separate owner-only file.
The automatic-memory setting is stored separately at
<ART_HOME>/config/art/auto-memory.json. Missing or unreadable configuration
means disabled. Only a user operating the authenticated governance page can
change it; MCP tools can read the status but cannot enable it. The switch is
independent of shared-knowledge delegation and does not affect recall or an
explicit art_memory_capture request.
Agent Reliability Toolkit
ART is one independent part of a small, local-first reliability toolkit:
Agent Recall Trail keeps private Agent memory separate from reviewed shared knowledge.
Agent Runtime Proof verifies that a live Agent or MCP runtime matches the artifact you approved.
Agent Residue Evidence records task-scoped files, processes, and listening ports left by tests and builds.
Each project remains separately installable and keeps its own trust boundary.
Community feedback
Real Codex and DSH evaluations are especially useful. A completed installation can be recorded with the short verified install report. For a deeper evaluation, share a synthetic or redacted workflow in the design-partner issue, including the host and ART version, the operation attempted, and the observed result. DSH users can also join the official community discussion. Do not post credentials, private knowledge, or full transcripts.
Documentation
All automated or manual tests must use an explicit task-owned ART home. ART never modifies Codex or DSH configuration automatically.
Apache-2.0 licensed. See Security, Contributing, and Support.
This server cannot be deployed
Maintenance
Related MCP Connectors
- memnodeOAuthdev.memnode
Persistent, inspectable memory for AI agents with lineage, correction, and a hosted MCP endpoint.
Shared, governed long-term memory for AI agents across tools and sessions via MCP and REST.
Agent-native notes, tasks, dev-docs, vaults, sync & handoffs. MCP + OpenAPI dual surface.
Persistent memory for AI agents — log and recall conversation context over MCP.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceProvides a stdio MCP bridge for coding agents to query and record engineering knowledge locally, preserving debugging history, failed attempts, and verified solutions.2 npmMIT

CarpeOS MCP Serverofficial
AlicenseNot gradedqualityAmaintenanceEnables AI agents to capture, search, and manage structured memory from agent sessions with append-only events and provenance tracking, providing eight local MCP stdio tools.Apache 2.0- AlicenseNot gradedqualityAmaintenanceEnables MCP agents to maintain durable, evidence-aware project knowledge, retrieve precise excerpts on demand, and track decisions, conflicts, and revisions across sessions.1Apache 2.0
- FlicenseNot gradedqualityCmaintenanceEnables AI coding agents and IDEs to capture conversations, extract structured knowledge into a queryable graph database, and recall past decisions, patterns, files, and errors across all projects and workspaces. Provides persistent memory tools for saving, searching, and cleaning up knowledge via MCP.2-