cogsession
Related Servers
Alternatives to cogsession
No user-submitted related servers found.
Related Servers
- AlicenseNot gradedqualityDmaintenanceMCP server that captures and recalls coding session memory (failures, decisions, diffs) for AI agents, enabling cross-agent continuity and preventing repeated mistakes.89 npmMIT
- AlicenseNot gradedqualityCmaintenanceAn MCP server that gives Claude Code cross-session memory persisted to a plain .claude-memory.md file in your repo.MIT
- AlicenseAqualityAmaintenanceLocal MCP server giving AI coding agents (Claude Code, Cursor, VS Code/JetBrains Copilot) a shared, persistent memory of your projects and every bug/issue faced during development. Stateless, plain-file storage (AGENTS.md + issues.jsonl) — no database.1637 npm1MIT
- AlicenseNot gradedqualityCmaintenancePersistent memory MCP server for Claude Code that stores decisions and summaries locally, enabling Claude to recall past context across chats.1MIT
- AlicenseNot gradedqualityCmaintenancePersistent memory MCP server for Claude Code that captures and recalls project context across sessions, eliminating the need to re-explain architecture and decisions daily.612 npm1MIT
- AlicenseBqualityAmaintenancePersistent memory MCP server that captures coding session context and automatically injects relevant memories into prompts using hybrid search for OpenCode and Claude Code.1471MIT
TDQS
Scored across 11 tools
Most tools are clearly distinct — checkpoint/update, tree/search/log/status, and claim_record/claim_check each serve different purposes. The main ambiguity is session_init and session_load, since both are meant to be called at session start and both reference continuation from previous sessions, though their outputs differ.
The session_ prefix gives the set a strong, consistent identity, and all names use lowercase_with_underscores. However, operations mix imperative verbs (init, load, update) with noun-style view commands (tree, status, log, diagram), and the claim_* pair breaks the session_ prefix pattern.
11 tools is well-scoped for a session-management server. Each tool covers a distinct part of the workflow — lifecycle, history, search, status, claims, and diagram — and none feels redundant or unnecessary.
The core lifecycle is well covered: init, update, checkpoint, load, plus history, search, status, claims, and diagram. Minor gaps exist — there is no explicit session_end/archive tool and no way to delete or supersede a claim — but agents can complete the main workflow without dead ends.