Kratos MCP — Summary
Kratos MCP is a TypeScript/Node.js MCP server providing 12 "ultra-lean" memory tools for AI coding tools. Per the README, it claims "64% smaller context footprint than competitors" via a focused 12-tool surface (vs larger memory servers). It uses SQLite + FTS5 per-project, auto-detecting projects via git/package.json/directory. The repository is marked as legacy in the README — the project has evolved to ceorkm/kratos-cli (a standalone CLI), but the MCP server is still npm-installable as kratos-mcp.
It stores memories in ~/.kratos/projects/<project-id>/memories.db with per-project isolation. A PII detector ships for scanning text before saving. No hooks, no skills, no commands — just 12 MCP tools. Unlike ccmemory (Neo4j graph), basic-memory (Markdown + wikilinks), and CogniLayer (14 typed facts), Kratos uses untyped "memory" objects with tags, paths, and importance levels stored in FTS5 full-text search.
Compared to seeds: closest to ccmemory (MCP memory server for AI tools) but much simpler — flat key-value memories with FTS5 search rather than a typed graph. Self-described as "Ultra-Lean" with deliberate constraint to 12 tools. Now legacy; the active version is a separate CLI repo.