|
10 | 10 | [](integrations/langgraph/) |
11 | 11 | [](integrations/crewai/) |
12 | 12 | [](integrations/autogen/) |
13 | | -[]() |
| 13 | +[]() |
14 | 14 |
|
15 | 15 | Perseus Vault is a single Rust binary that gives AI agents durable memory across sessions. |
16 | 16 | **One binary. One file. No Docker. No Postgres. No cloud.** Just persistent memory |
@@ -93,15 +93,15 @@ local-first, zero-dependency, AND agent-first. |
93 | 93 | |---|---|---|---|---| |
94 | 94 | | **Deployment** | Single binary (~8MB) | Cloud + self-host | Docker/Postgres | Docker/Postgres | |
95 | 95 | | **Dependencies** | None (SQLite embedded) | Python + vector DB | Postgres + Python | Postgres + Go | |
96 | | -| **MCP-Native** | ✅ 49 tools | ❌ Not MCP-native | ❌ Not MCP-native | ❌ Not MCP-native | |
| 96 | +| **MCP-Native** | ✅ 52 tools | ❌ Not MCP-native | ❌ Not MCP-native | ❌ Not MCP-native | |
97 | 97 | | **Offline/Local** | ✅ Fully local | Cloud-dependent | Docker needed | Docker needed | |
98 | 98 | | **Encryption** | AES-256-GCM ✅ | ❌ | ❌ | ❌ | |
99 | 99 | | **Hybrid Search** | BM25 + Dense + RRF | Vector only | Vector only | Vector + Graph | |
100 | 100 | | **Entity Lifecycle** | Decay + Promote + Archive | ❌ | ❌ | ❌ | |
101 | 101 | | **Entity Graph** | Link + Traverse | ❌ | ❌ | ✅ | |
102 | 102 | | **Journal Audit Trail** | ✅ Immutable | ❌ | ❌ | ❌ | |
103 | 103 | | **State Management** | ✅ Key-value + TTL | ❌ | ❌ | ❌ | |
104 | | -| **MCP Tools** | 49 | 5 | 8 | 0 | |
| 104 | +| **MCP Tools** | 52 | 5 | 8 | 0 | |
105 | 105 | | **GitHub Stars** | ~20 | ~55K | ~15K | ~3K | |
106 | 106 | | **License** | MIT | Apache 2.0 | Apache 2.0 | Apache 2.0 | |
107 | 107 |
|
@@ -143,7 +143,7 @@ Each adapter: |
143 | 143 | Any MCP-compatible framework works with Perseus Vault directly. See |
144 | 144 | [Awesome Mimir](awesome-mimir.md) for the full list. |
145 | 145 |
|
146 | | -## 49 MCP Tools |
| 146 | +## 52 MCP Tools |
147 | 147 |
|
148 | 148 | ### Entity CRUD |
149 | 149 | | Tool | Description | |
@@ -175,6 +175,9 @@ Any MCP-compatible framework works with Perseus Vault directly. See |
175 | 175 | | `mimir_link` | Create typed relationship links between entities. | |
176 | 176 | | `mimir_unlink` | Remove entity links. | |
177 | 177 | | `mimir_traverse` | Walk entity link graph up to configurable depth. | |
| 178 | +| `mimir_communities` | GraphRAG community detection over the link graph (deterministic label propagation or greedy-modularity "louvain"; pure Rust, offline). | |
| 179 | +| `mimir_community_summary` | Extractive (optionally LLM-polished) summary of one community, materialized as an entity with `evidence_for` links to members. | |
| 180 | +| `mimir_global_recall` | GraphRAG global search: breadth over community summaries, then depth into the best communities' members — holistic answers across clusters. | |
178 | 181 |
|
179 | 182 | ### Journal |
180 | 183 | | Tool | Description | |
|
0 commit comments