You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Synapse Layer is the trust layer for the agentic internet. It gives AI agents persistent, encrypted memory with built-in governance — so agents can store decisions, recall preferences, and hand off context across sessions, models, and tools.
When to Use Synapse Layer
When your agent needs to remember user preferences, decisions, or constraints across sessions
When Agent A needs to hand off context to Agent B securely (Handover V2)
When you need an audit trail of every memory operation (who stored what, when)
When you need encrypted memory at rest (AES-256-GCM) without building your own crypto
When you want semantic recall — find memories by meaning, not keywords
When you need Trust Quotient scoring to filter reliable vs noisy memories
When building multi-agent systems that share context with governance
fromsynapse_layerimportSynapseClient# Initialize with your API keyclient=SynapseClient(api_key="sk_connect_...")
# Store a memory (encrypted server-side with AES-256-GCM)client.store(
content="User prefers dark mode and minimal notifications",
agent="onboarding-v2",
memory_type="preference"
)
# Recall by semantic similaritymemories=client.recall(
query="user interface preferences",
min_tq=0.7, # Trust Quotient filterlimit=5
)
# Delete a memory (hard-delete, LGPD-compliant)client.delete(memory_id="mem_abc123")
Supported Frameworks
Framework
Status
Integration
Claude (Desktop + API)
✅ Live
Native MCP
Cursor
✅ Live
IDE Integration
LangChain
✅ Live
Python SDK
Claude Desktop
✅ Live
MCP Native
Coming Soon
Framework
Integration
ChatGPT
Via Synapse Proxy
CrewAI
SDK Adapter
AutoGen
SDK Adapter
LangGraph
Orchestration
n8n
Workflow
Zapier
Automation
Trust & Security
Encryption: AES-256-GCM server-side at rest, per-operation random IV, 128-bit auth tag