Projectmem
Related Servers
Alternatives to Projectmem
- AlicenseNot gradedqualityNot gradedmaintenanceA robust server for managing long-term agent memory using Mem0, providing efficient storage and retrieval of agent memories with a lightweight Python-based implementation.MIT
- AlicenseAqualityDmaintenanceProvides versioned, structured memory for AI agents, allowing them to store facts, detect conflicts, and track knowledge history via a hosted SaaS platform. It enables efficient hierarchical information retrieval and semantic search while keeping token usage constant as memory scales.718 npm8Apache 2.0
Related Servers
- AlicenseAqualityBmaintenanceLocal-first project memory for AI coding agents. Records failed attempts, fragile files, and decisions per repo, and warns the agent via hooks before it repeats a recorded mistake.647 npmMIT
- AlicenseAqualityFmaintenanceSelf-improving, verifiable memory for AI coding agents. Learns how you work, stops repeating mistakes, models each project, recalls the right lesson at the right moment. Every memory is signed and tamper-evident. Local-first.82Apache 2.0
- FlicenseNot gradedqualityAmaintenancePersistent memory for AI coding agents: local-first semantic search, dependency graphs, git history.1-
- AlicenseNot gradedqualityBmaintenanceProvides AI coding agents with git-native persistent memory and a dependency-aware task graph, letting them record and fuzzy-recall architectural decisions, lessons, and gotchas while creating, claiming, and completing tasks that auto-unblock downstream work. Stores everything as plain JSON and Markdown committed inside the repository, so context stays branch-aware, team-shared, and reviewable in pull requests.0MIT
- AlicenseBqualityBmaintenancePersistent memory and session intelligence for AI coding assistants. Auto-tracks mistakes, decisions, and context via hooks. Mines your full session history for patterns, predictions, and cross-session search.2116MIT
- AlicenseNot gradedqualityCmaintenanceProvides a memory layer for AI coding agents with Git-powered version control, enabling automatic tracking of prompts, context, and code diffs.192MIT
TDQS
Scored across 17 tools
Most tools have clearly distinct purposes, especially the read/write split and the issue lifecycle (log_issue, record_attempt, record_fix). A few retrieval tools (get_summary, get_context, search_events, get_issue) overlap in intent, but their descriptions provide strong usage guidance.
The server uses a mostly consistent snake_case verb_noun pattern (get_*, log_issue, add_note). The main deviation is current_project, which is noun-only, and the verbs log/record/add are near-synonyms, creating slight stylistic inconsistency.
At 17 tools, the set is slightly over the typical 3-15 well-scoped range, so it feels a bit heavy. However, the count is justified by the breadth of project memory functionality: separate read, write, issue-lifecycle, and cross-project tools.
The issue lifecycle is well covered (log, attempt, fix, read), and durable memory capture (decisions, notes, gotchas) is solid. Minor gaps exist around updating or deleting existing records, though the append-only design makes that intentional.