Description

Memory-powered AI agent framework built by BYTEROVER that provides persistent memory capabilities across conversations and sessions using vector databases and embeddings. The implementation supports multiple LLM providers (OpenAI, Anthropic, Gemini, Ollama, etc.), vector stores (Qdrant, Milvus, in-memory), and includes specialized workspace memory for team collaboration tracking project progress, bug reports, and member activities. Features include automatic memory extraction and storage, reasoning pattern recognition, knowledge graph integration, and MCP aggregator mode that exposes memory tools alongside connected MCP servers with conflict resolution, serving developers who need AI assistants that learn and remember context across coding sessions, teams requiring shared project memory, and organizations building AI workflows that benefit from persistent knowledge retention.

Installation

npx -y @byterover/cipher
npm install @byterover/cipher
git clone https://github.com/campfirein/byterover-cli

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "cipher": {
      "command": "npx",
      "args": [
        "-y",
        "@byterover/cipher"
      ]
    }
  }
}