Maximem Synap is the memory layer that makes AI agents remember. 92% LongMemEval, 93.2% on LOCOMO. Works natively with LangChain, LlamaIndex, CrewAI, Google ADK, AutoGen, OpenAI Agents, Semantic Kernel, Haystack, and Pydantic AI.
git clone https://github.com/maximem-ai/maximem_synap_sdk && cp maximem_synap_sdk/*.md ~/.claude/agents/Resumen de Subagents
<!--
This README is the SINGLE SOURCE OF TRUTH, maintained in the private monorepo at
public_sdk/README.md and synced to the public repo root by scripts/sync_to_public.sh.
DO NOT edit the copy in maximem-ai/maximem_synap_sdk directly — changes there are
overwritten on the next sync. Edit here instead.
The integration table below is generated by scripts/gen_readme_integrations.py.
-->
<p align="center">
<picture>
<source media="(prefers-color-scheme: dark)" srcset="assets/banner-light.png">
<source media="(prefers-color-scheme: light)" srcset="assets/banner-dark.png">
<img src="assets/banner-light.png" alt="Maximem Synap — AI Agents Forget. Synap Makes Them Remember." width="100%" />
</picture>
</p>
<p align="center">
<a href="https://docs.maximem.ai"><strong>Docs</strong></a> ·
<a href="https://synap.maximem.ai"><strong>Dashboard</strong></a> ·
<a href="https://www.maximem.ai/blog/synap-benchmark-results"><strong>Benchmarks</strong></a> ·
<a href="https://www.maximem.ai/synap"><strong>Website</strong></a>
</p>
<p align="center">
<a href="https://pypi.org/project/maximem-synap"><img src="https://img.shields.io/pypi/v/maximem-synap?style=flat-square&color=blue&label=pypi" alt="PyPI" /></a>
<a href="https://pypi.org/project/maximem-synap"><img src="https://img.shields.io/pypi/dm/maximem-synap?style=flat-square&color=blue" alt="PyPI Downloads" /></a>
<a href="https://www.npmjs.com/package/@maximem/synap-js-sdk"><img src="https://img.shields.io/npm/v/@maximem/synap-js-sdk?style=flat-square&color=blue&label=npm" alt="npm" /></a>
<a href="https://pypi.org/project/maximem-synap"><img src="https://img.shields.io/pypi/pyversions/maximem-synap?style=flat-square" alt="Python versions" /></a>
<a href="LICENSE"><img src="https://img.shields.io/badge/license-Apache%202.0-blue?style=flat-square" alt="License" /></a>
<a href="https://x.com/maximem_ai"><img src="https://img.shields.io/badge/follow-%40maximem__ai-1DA1F2?style=flat-square&logo=x&logoColor=white" alt="Twitter" /></a>
<a href="https://www.linkedin.com/company/maximem-ai"><img src="https://img.shields.io/badge/LinkedIn-Maximem%20AI-0A66C2?style=flat-square&logo=linkedin&logoColor=white" alt="LinkedIn" /></a>
</p>
---
## The memory layer for production AI agents
Your AI agents forget everything between conversations. Synap fixes that — with a production-grade memory layer built for applications that serve real users at scale. **#1 on [LongMemEval](https://www.maximem.ai/blog/synap-benchmark-results) (92%) and [LoCoMo](https://www.maximem.ai/blog/synap-benchmark-results) (93.2%)**, sub-15ms anticipatory retrieval, and native integrations with every major AI framework.
<p align="center">
<strong>LangChain · LangGraph · LlamaIndex · CrewAI · AutoGen · Haystack · Google ADK · OpenAI Agents · Semantic Kernel · Pydantic AI · Agno · LiveKit · Pipecat · Claude Agent · Mastra · Vercel AI SDK · NeMo Agent Toolkit · Microsoft Agent Framework</strong>
</p>
> **What's in this repo:** the open-source Python and JavaScript SDKs plus all framework integrations, licensed under Apache 2.0. The Synap memory engine itself — ingestion, entity resolution, retrieval, anticipation — runs as a fully managed cloud service operated by Maximem and is **not** open source. The SDKs in this repo are clients for that service; there is nothing to self-host, and an [API key](https://www.maximem.ai/synap) is required.
---
## Benchmarks
Synap leads the field on the two standard long-term memory benchmarks — evaluated on identical hardware with an open-source harness.
| Benchmark | Synap accuracy |
|---|---|
| **LongMemEval** | **92%** |
| **LoCoMo** | **93.2%** |
Synap outperforms leading published memory systems, run through the same [open-source evaluation harness](https://github.com/maximem-ai/memory_and_context_eval_harness) on identical hardware and configs.
> **"Longer conversations make Synap better, not worse."** Richer entity graphs and stronger pattern recognition at scale.
Full methodology and reproduction instructions → [maximem.ai/blog/synap-benchmark-results](https://www.maximem.ai/blog/synap-benchmark-results)
---
## Install
```bash
# Python
pip install maximem-synap
# JavaScript / TypeScript
npm install @maximem/synap-js-sdk
```
---
## 60-second quickstart
Your agent forgets. Synap remembers — across conversations, sessions, and devices.
The SDK connects to the hosted Synap cloud service — you'll need an [API key](https://www.maximem.ai/synap). There's no local server to run: memory processing happens in Synap's cloud, not in this package.
```python
import asyncio
from maximem_synap import MaximemSynapSDK
sdk = MaximemSynapSDK(api_key="your-api-key")
async def main():
await sdk.initialize()
# Monday's standup
await sdk.conversation.record_message(
conversation_id="mon-standup",
user_id="alice",
role="user",
content="I'm migrating our auth service to OAuth2 this sprint.",
)
# Friday — completely different conversation, same user
context = await sdk.fetch(
conversation_id="fri-review",
user_id="alice",
search_query=["what is alice working on?"],
)
print(context.formatted_context)
# → "Alice is migrating the auth service to OAuth2 this sprint."
asyncio.run(main())
```
<details>
<summary><strong>JavaScript / TypeScript</strong></summary>
```javascript
const { createClient } = require('@maximem/synap-js-sdk');
const client = createClient({ apiKey: 'your-api-key' });
await client.init();
// Record
await client.conversation.recordMessage({
conversationId: 'mon-standup',
userId: 'alice',
role: 'user',
content: "I'm migrating our auth service to OAuth2 this sprint.",
});
// Fetch later — anywhere
const context = await client.fetchUserContext({
userId: 'alice',
query: 'what is alice working on?',
});
console.log(context.formattedContext);
```
</details>
---
## What makes Synap different
### 🎯 Anticipatory Retrieval
Synap **pre-fetches context before your agent requests it**. 15ms P50 latency in production. For voice AI agents, this is the difference between natural conversation and awkward pauses.
### 🔗 Entity Resolution
When a user says *"my manager"* in turn 3 and *"Sarah"* in turn 12, Synap resolves them automatically. Cross-session, cross-conversation, without the agent doing any work.
### ⏳ Temporal Awareness
Context from 30 minutes ago and context from 30 days ago should not carry equal weight. Synap applies temporal decay and relevance scoring so your agent surfaces the right information at the right time.
### 🧠 Conscious Forgetting
When a user says *"ignore what I said about the budget,"* Synap processes that as a retraction — not just more context to store. Contradiction handling is built into the pipeline.
### 🏗️ Custom Memory Architectures
No universal memory model. Synap builds customized memory architectures per use case. Customer support agents and voice AI agents need different context strategies. Synap handles both.
### 🏢 Multi-Tenant Scoping
Built for B2B from day one. Memory is scoped across a four-level hierarchy:
```
client → shared knowledge across your entire platform
└── customer → per-company context (multi-tenant B2B)
└── user → per-user memory and preferences
└── conversation → in-session history
```
One `fetch()` call merges all relevant scopes in parallel.
---
## Framework integrations
Installable packages — not code snippets. Deep framework surfaces with callbacks, graph nodes, retrievers, memories, and plugins.
### LangChain
```bash
pip install maximem-synap maximem-synap-langchain
```
```python
from maximem_synap import MaximemSynapSDK
from synap_langchain import SynapChatMessageHistory
from langchain_openai import ChatOpenAI
from langchain_core.runnables.history import RunnableWithMessageHistory
sdk = MaximemSynapSDK(api_key="your-api-key")
await sdk.initialize()
chain = RunnableWithMessageHistory(
ChatOpenAI(),
lambda session_id: SynapChatMessageHistory(
sdk=sdk, conversation_id=session_id, user_id="alice",
),
)
```
### CrewAI
```bash
pip install maximem-synap maximem-synap-crewai
```
```python
from synap_crewai import SynapStorageBackend
crew = Crew(
agents=[...], tasks=[...],
memory=True,
storage=SynapStorageBackend(sdk=sdk, user_id="alice"),
)
```
### LlamaIndex
```bash
pip install maximem-synap maximem-synap-llamaindex
```
```python
from synap_llamaindex import SynapChatMemory
memory = SynapChatMemory(sdk=sdk, user_id="alice")
agent = ReActAgent.from_tools(tools, memory=memory)
```
### All integrations
<!-- BEGIN integrations (generated by scripts/gen_readme_integrations.py) -->
| Framework | Package | Install |
|---|---|---|
| LangChain | [`maximem-synap-langchain`](packages/integrations/synap-langchain/) | `pip install maximem-synap-langchain` |
| LangGraph | [`maximem-synap-langgraph`](packages/integrations/synap-langgraph/) | `pip install maximem-synap-langgraph` |
| LlamaIndex | [`maximem-synap-llamaindex`](packages/integrations/synap-llamaindex/) | `pip install maximem-synap-llamaindex` |
| CrewAI | [`maximem-synap-crewai`](packages/integrations/synap-crewai/) | `pip install maximem-synap-crewai` |
| AutoGen | [`maximem-synap-autogen`](packages/integrations/synap-autogen/) | `pip install maximem-synap-autogen` |
| Haystack | [`maximem-synap-haystack`](packages/integrations/synap-haystack/) | `pip install maximem-synap-haystack` |
| Google ADK | [`maximem-synap-google-adk`](packages/integrations/synap-google-adk/) | `pip install maximem-synap-google-adk` |
| OpenAI Agents SDK | [`maximem-synap-openai-agents`](packages/integrations/synap-openai-agents/) | `pip install maximem-synap-openai-agents` |
| Semantic Kernel | [`maximem-synap-semantic-kernel`](packages/integrations/synap-semantic-kernel/) | `pip install maximem-synap-semantic-kernel` |
| PLo que la gente pregunta sobre maximem_synap_sdk
¿Qué es maximem-ai/maximem_synap_sdk?
+
maximem-ai/maximem_synap_sdk es subagents para el ecosistema de Claude AI. Maximem Synap is the memory layer that makes AI agents remember. 92% LongMemEval, 93.2% on LOCOMO. Works natively with LangChain, LlamaIndex, CrewAI, Google ADK, AutoGen, OpenAI Agents, Semantic Kernel, Haystack, and Pydantic AI. Tiene 48 estrellas en GitHub y se actualizó por última vez today.
¿Cómo se instala maximem_synap_sdk?
+
Puedes instalar maximem_synap_sdk clonando el repositorio (https://github.com/maximem-ai/maximem_synap_sdk) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar maximem-ai/maximem_synap_sdk?
+
maximem-ai/maximem_synap_sdk aún no ha sido auditado por nuestro agente de seguridad. Revisa el repositorio original en GitHub antes de usarlo en producción.
¿Quién mantiene maximem-ai/maximem_synap_sdk?
+
maximem-ai/maximem_synap_sdk es mantenido por maximem-ai. La última actividad registrada en GitHub es de today, con 1 issues abiertos.
¿Hay alternativas a maximem_synap_sdk?
+
Sí. En ClaudeWave puedes explorar subagents similares en /categories/agents, ordenados por popularidad o actividad reciente.
Despliega maximem_synap_sdk en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/maximem-ai-maximem-synap-sdk)<a href="https://claudewave.com/repo/maximem-ai-maximem-synap-sdk"><img src="https://claudewave.com/api/badge/maximem-ai-maximem-synap-sdk" alt="Featured on ClaudeWave: maximem-ai/maximem_synap_sdk" width="320" height="64" /></a>Más Subagents
The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.
The agent that grows with you
Java 面试 & 后端通用面试指南,覆盖计算机基础、数据库、分布式、高并发、系统设计与 AI 应用开发
Build Agentic workflows, RAG pipelines, with rich AI model and tool support on one collaborative workspace. Deploy on cloud, VPC, or self-hosted, so teams move from prototype to production without rebuilding the stack.
The agent engineering platform.
Turn any codebase, with its docs, SQL schemas, configs, and PDFs, into a queryable knowledge graph. A /graphify skill for Claude Code, Cursor, Codex, and Gemini CLI: local deterministic AST parsing, every edge explained, no vector store.