Persistent memory graph for AI coding agents — semantic search, knowledge graph, and time-based decay over MCP
# Synapto [](https://github.com/ramonlimaramos/synapto/actions/workflows/ci.yml) [](https://www.python.org/downloads/) [](https://opensource.org/licenses/MIT) [](https://pypi.org/project/synapto/) **Your AI agent forgets everything between sessions. Synapto fixes that.** Flat-file memory (`MEMORY.md`) doesn't scale — no search, no structure, no decay. Synapto gives any MCP-compatible agent a real memory: store once, recall by meaning, watch bad memories fade and good ones persist. ```bash # remember "Hermes uses the outbox relay pattern for Kafka" # recall — weeks later, different session "How does Hermes handle messaging?" → [stable] Hermes uses the outbox relay pattern for Kafka (score=0.94, trust=0.65) ``` Works with Claude Code, Cursor, Windsurf, Codex, LangGraph, Agno, or any MCP client. ## Try it in 60 seconds **Docker:** ```bash git clone https://github.com/ramonlimaramos/synapto.git && cd synapto docker compose up -d docker compose exec synapto synapto search "hello world" ``` **Local:** ```bash pip install synapto createdb synapto && psql -d synapto -c "CREATE EXTENSION vector;" synapto init synapto search "hello world" ``` ## What it does **Search** — Ask a question, get the best memory. Behind the scenes, three signals (vector similarity, full-text, and compositional algebra) are fused into one score. You just call `recall`. **Graph** — Entities are auto-extracted and linked. Ask "what depends on Kafka?" and get an answer via graph traversal, not keyword guessing. **Decay** — Core memories live forever. Ephemeral notes fade in hours. Working context lasts about a week. Memories that get used stay alive; unused ones sink. **Trust** — Mark memories as helpful or not. Ba
Agent that generates comprehensive documentation, API references, architecture diagrams, and developer onboarding guides from existing code.
Agent configuration for systematic bug investigation that traces issues from error logs through the codebase to root cause with suggested fixes.
Agent for integrating third-party APIs including SDK setup, type generation, error handling, retry logic, and rate limit management.
Cursor's built-in autonomous coding agent that can make multi-file edits, run terminal commands, search the codebase, and iteratively build features with minimal human intervention.
Cloud-based autonomous coding agent that runs in the background on remote sandboxed environments, handling complex multi-step tasks while you continue working.
Cursor's multi-file editing agent within Composer mode that can create, edit, and delete files across your entire project in a single conversation.