Argon Memory
Click on "Install 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., "@Argon MemoryRecord our decision to use Postgres and link it to the schema doc"
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.
Argon Memory
Durable project memory for agents that do real work
An open-source MCP knowledge system that turns documents, agent output, decisions, and verified conversations into a persistent, evidence-aware project memory.
中文 · Architecture · MCP tools · Benchmarks · Security
Most agent memory systems save chat fragments. Argon Memory maintains a project.
It gives every connected agent the same compact project map, lets it retrieve exact evidence only when needed, and closes the loop by persisting durable outputs and distilled knowledge after work. Facts do not silently overwrite one another: provenance, revisions, validation state, and unresolved conflicts remain visible.
Why Argon Memory
Project-shaped memory — one stable main file, maintained domain sections, a knowledge graph, and linked Artifacts.
Token-efficient context — load the small project map first; retrieve sections and evidence excerpts only when the task needs them.
Evidence before confidence — accepted memory links to source records; unsupported candidates are quarantined instead of becoming facts.
Durable agent closeout — work items, generated resources, decisions, lessons, and unresolved questions survive beyond a chat session.
Conflict-aware by design — competing claims are disclosed and routed to an authorized human resolver; the model cannot silently pick a winner.
Append-only history — immutable revision manifests, SHA-256 fingerprints, audit events, and supersession instead of destructive deletion.
MCP-native — works with Codex, Claude Code, Qoder, Hermes, Cursor, or any Streamable HTTP MCP client.
Model-neutral — the query path does not require an LLM. A separate, optional maintenance worker can use the model and provider you choose.
Related MCP server: lore
Mental model
flowchart LR
A["Agent starts a task"] --> B["Main project file"]
B --> C["Maintained section"]
C --> D["Linked Artifact evidence"]
C --> E["Accepted memory"]
D --> F["Precise answer or project work"]
E --> F
F --> G["Work closeout"]
G --> H["Outputs + distilled knowledge"]
H --> I["Validation and conflict routing"]
I --> BThe layers have different jobs:
Layer | Purpose |
Main file | Stable identity, mission, current phase, navigation, and global rules |
Sections | Long-lived synthesis for major project domains |
Artifacts | Original files, normalized Markdown, images, tables, and generated deliverables |
Structured memory | Facts, decisions, procedures, lessons, constraints, preferences, and open questions |
Conflicts | Competing claims, evidence, status, resolver question, and preserved resolution history |
Audit and revisions | Immutable publication history and reproducible current-state pointers |
Quick start
Requirements: Node.js 22+; Python 3.10+ only when using the optional MinerU adapter.
git clone https://github.com/Tangtaizong-BUAA/ArgonMemory.git
cd ArgonMemory
npm install
npm run build
export ARGON_MEMORY_KB_ROOT="$PWD/data"
export ARGON_MEMORY_MCP_PROFILE="project-ops"
export ARGON_MEMORY_ALLOW_UNAUTHENTICATED="true" # local bootstrap only
npm startThe MCP endpoint is http://127.0.0.1:8793/mcp; health is available at http://127.0.0.1:8793/health.
Bootstrap the first project with kb_bootstrap_project:
{
"project_id": "project:my-product",
"title": "My Product",
"mission": "Maintain a trustworthy, durable operating memory for this product."
}After bootstrap, run normal agents with the project-contribute profile and install the bundled argon-memory Skill.
Connect an MCP client
{
"mcpServers": {
"argon_memory": {
"url": "http://127.0.0.1:8793/mcp",
"headers": {
"Authorization": "Bearer ${ARGON_MEMORY_TOKEN}"
}
}
}
}For a local single-user experiment, omit the header only when ARGON_MEMORY_ALLOW_UNAUTHENTICATED=true. Never expose unauthenticated contribute or ops profiles to a network.
The agent workflow
kb_sync_skill → kb_brief → kb_graph_context → kb_search as needed
→ kb_start_work → publish/capture → kb_finish_workkb_briefloads the complete compact project map.kb_graph_contextopens one maintained section and its linked evidence.kb_searchretrieves precise facts, names, dates, versions, quotations, and Artifact excerpts.kb_start_workcreates a durable task identity before material work begins.kb_publish_resourcestores useful outputs;kb_capture_contextsubmits distilled memory candidates.kb_finish_workrecords the outcome, evidence, unresolved items, and idempotent result hash.
This separation avoids two common failures: flooding every prompt with the whole archive and pretending that a short summary is sufficient evidence.
Permission profiles
Profile | Intended use | Capabilities |
| Read-only clients and replicas | Brief, graph, search, lookup, read, views |
| Normal team agents | Read tools plus work, Artifact, context, and closeout writes |
| Project owner or designated resolver | Locks explicit human conflict resolutions for maintenance |
| Loopback operations service | Bootstrap, ingestion, normalization, lint, and health |
Principal tokens are stored as SHA-256 hashes in ARGON_MEMORY_MCP_PRINCIPALS_JSON. Resolver access additionally requires the project-owner or designated-resolver role. A shared token never proves which human spoke.
Canonical storage
Argon Memory deliberately keeps human-inspectable Markdown and YAML frontmatter as canonical truth. Search indexes and graph views are derived and rebuildable.
data/
├── registry/ # projects, sections, work, Artifacts, conflicts
├── memory/ # structured memory records
├── events/ # durable activity records
├── resources/ # immutable uploaded bytes
├── normalized/ # parser-derived Markdown and media links
├── audit/events.jsonl # append-only audit stream
├── maintenance/queue.sqlite # bounded maintenance ChangePackets
└── knowledge/
├── revisions/ # immutable canonical snapshots
├── indexes/ # rebuildable derived indexes
└── current-revision.json # atomic pointer to one consistent snapshotNo project data ships in this repository. The data/ tree is created at runtime and ignored by Git.
Artifact normalization
Text, Markdown, CSV, JSON, and YAML become searchable immediately. Binary documents remain immutable Artifacts until normalized.
MinerU Cloud is an optional adapter:
python3 -m pip install mineru-open-sdk
export MINERU_API_KEY="..."Then an ops principal can register a source root, ingest inventory, and call kb_parse_artifact. The API egress is written to the audit log. Argon Memory is not coupled to MinerU's storage or model layer; other normalizers can write the same normalized Markdown contract.
What is intentionally not included
No chat UI or hosted online Agent.
No command runner, container workspace, or remote execution plane.
No project documents, user files, production database, credentials, or deployment secrets.
No model that answers on behalf of connected clients.
No test fixtures or test corpus in the published package.
Argon Memory is the memory layer. Your local or hosted agent remains the reasoning and execution layer.
Status
0.1.1 is the current standalone Argon release, extracted from a production project-memory system. The storage contract, MCP surface, provenance rules, and conflict boundaries are usable today; high-scale vector backends and additional normalizer adapters remain future work.
Public benchmark
Argon Memory includes an MCP-native adapter for the official LongMemEval-V2 Agent memory benchmark. It evaluates long-horizon web and enterprise trajectories across five memory abilities while measuring answer quality and query latency. Synthetic cases are used only as smoke gates and are never reported as benchmark scores. See benchmarks, the reporting policy, and the first public retrieval diagnostic.
The comparison above reproduces the official released RAG, AgentRunbook-R, Codex, and AgentRunbook-C accuracy/latency points and separately labels the AgentRunbook-C V2 research update. Argon's official answer accuracy and LAFS remain pending; the diagnostic below is retrieval-only and is not plotted as answer accuracy.
Lineage and license
Argon Memory was derived from project-memory work built on the MIT-licensed MinerU Document Explorer. Argon Memory 0.1.1 and later are released under the Apache License 2.0, including an explicit patent grant. Upstream attribution and the original MIT notice are preserved in NOTICE and THIRD_PARTY_NOTICES.md.
Contributors
Argon Memory is created and led by Tangtaizong-BUAA, with OpenAI Codex acknowledged as an AI engineering collaborator. Roles and attribution boundaries are documented in CONTRIBUTORS.md.
Contributions are welcome. Please read CONTRIBUTING.md and SECURITY.md before opening a pull request or reporting a vulnerability.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceProvides AI agents with persistent knowledge storage, enabling them to store, search, and retrieve text, documents, and files using semantic and keyword search via MCP tools.31Apache 2.0
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to capture, store, and retrieve durable learnings from projects via MCP tools, providing a queryable memory of product and technical lessons across repos.MIT
- AlicenseBqualityBmaintenanceEnables coding agents to incrementally index project text and code, persist decisions and constraints with clear sources, and assemble focused project context across sessions via MCP.342375MIT
- AlicenseNot gradedqualityCmaintenanceDurable, inspectable memory for MCP agents. Preserves decisions, preferences, and project knowledge across sessions with full provenance and version history.2Apache 2.0
Related MCP Connectors
Shared, governed long-term memory for AI agents across tools and sessions via MCP and REST.
The project brain for AI coding agents — memory, decisions, sprints, knowledge base via MCP.
Shared, peer-validated knowledge archive for AI agents — search, contribute, and validate via MCP
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Tangtaizong-BUAA/ArgonMemory'
If you have feedback or need assistance with the MCP directory API, please join our Discord server