mempalace/mempalace

The best-benchmarked open-source AI memory system. And it's free.

View on GitHub ↗Jump to charts ↓Open shareable report

Summary Information

Updated 10 minutes ago
Added to GitGenius on August 31st, 2026
Created on April 5th, 2026
Open Issues & Pull Requests: 730 (+0)
Number of forks: 7,540
Total Stargazers: 58,754 (-1)
Total Subscribers: 322 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 8.4 hours
Mean response time: 3.9 days
90th percentile: 8.8 days
Tracked items: 688

How this project is maintained

Around half of the issues opened in the past year never receive a reply. 99% of open issues come from outside the core team, so the backlog reflects real-world use rather than internal planning. Work labelled "area/install" is answered fastest, typically in under an hour, while "P2" waits about 3 days. 48% of tracked open issues have had no activity in three months. Only 6% of issues opened in the past year have been closed.

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 352
New in 7 days: 16
Closed in 7 days: 9
Avg open age: 93 days
Stale 30+ days: 236
Stale 90+ days: 143

Recent activity

Opened in 7 days: 13
Closed in 7 days: 8
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • bug (320)
  • enhancement (167)
  • area/mcp (89)
  • storage (73)
  • area/mining (61)
  • area/search (56)
  • area/cli (47)
  • area/hooks (47)

Detailed Description

MemPalace is an AI memory system that stores conversation history as verbatim text and retrieves it using semantic search.

The tool solves the problem of maintaining accessible long-term context for AI agents without summarization or paraphrasing. It stores original content verbatim and organizes the index hierarchically—people and projects become wings, topics become rooms, and original content lives in drawers—allowing searches to be scoped rather than run against a flat corpus. The retrieval layer is pluggable, with ChromaDB as the current default backend; alternative backends can be integrated by implementing the interface defined in mempalace/backends/base.py. All data remains local by default unless explicitly opted into cloud storage.

Adoption suits projects where preserving exact conversation history matters and where semantic search over structured memory is valuable. The tool is designed for local-first operation with zero API calls required for core functionality. It performs at 96.6% R@5 raw on LongMemEval benchmarks. The project provides three skills for agent-guided setup and operation: mempalace for installation and operations, mempalace-recall for search-before-answer retrieval, and mempalace-task for logstream delegation. Installation is recommended via uv or pipx to isolate dependencies from system Python environments. Native Android support is not available, though Linux ARM64 users can run the tool in a Debian PRoot container on Termux.

The project maintains active engagement with users through documented security concerns, including a caution about impostor sites and a guide for Claude Code session retention. It provides multiple installation paths—agent-guided setup, direct CLI installation, and Docker—reflecting responsiveness to different user preferences. The codebase includes architecture documentation at mempalaceofficial.com/concepts/the-palace and maintains a detailed history of security incidents in docs/HISTORY.md.