llms.txt Content
# Synapse Layer
> AI Agent Memory Infrastructure — Trust Layer for the Agentic Internet
> Version: 2.4.6
> Full spec: https://synapselayer.org/llms-full.txt
Synapse Layer is an AI agent memory infrastructure. It provides persistent, encrypted, governed memory for AI agents that survives across sessions, models, and tools.
## Core Capabilities
- **Persistent Memory**: Store and recall context across agent sessions
- **AES-256-GCM Encryption**: Server-side encryption at rest with per-operation random IV
- **MCP Native Protocol**: First-class Model Context Protocol integration
- **Secure Agent Handover (V2)**: One agent stores, another recalls — with full audit trail
- **Trust Quotient**: Per-memory confidence scoring (0.0–1.0)
- **Semantic Recall**: pgvector HNSW-powered similarity search
- **Immutable Audit Trail**: Three-layer lifecycle (live data, tombstone, analytics)
- **OAuth 2.0 + PKCE S256**: Industry-standard authorization
- **LGPD / GDPR Aligned**: Hard-delete on request, consent-gated storage
## Quick Start
```
pip install synapse-layer
```
```python
from synapse_layer import SynapseClient
client = SynapseClient(api_key="sk_connect_...")
client.store(content="User prefers dark mode", agent="onboarding-v2")
memories = client.recall(query="user theme preference", min_tq=0.7)
```
## Supported Platforms
- Claude Desktop — MCP native
- Claude API — MCP / REST
- Cursor — MCP integration
- LangChain — Python SDK
- Vercel AI SDK — TypeScript SDK
- CrewAI, AutoGen, LangGraph — Coming Soon
- n8n, Zapier — Coming Soon
## Pricing
- Free: $0/month — AES-256-GCM, REST API, MCP protocol
- Pro: $19/month — Handover V2, OAuth + PKCE, SDK access, email support
- Enterprise: Contact sales — custom deployment, dedicated support
## Links
- [Full Specification](https://synapselayer.org/llms-full.txt): Complete technical spec with all capabilities, security details, and API reference.
- [Documentation](https://synapselayer.org/docs): Install
OpenAPI Spec (preview)
{"openapi":"3.1.0","info":{"title":"Synapse Layer API","version":"2.4.6","description":"MCP-Native Trust Infrastructure for AI Agents. Persistent, encrypted memory with AES-256-GCM encryption, cross-agent handover, Trust Quotient scoring, and built-in governance. The Trust Layer for the Agentic Internet.","contact":{"name":"Synapse Layer","url":"https://synapselayer.org","email":"founder.synapselayer@proton.me"},"license":{"name":"Apache-2.0","url":"https://www.apache.org/licenses/LICENSE-2.0"},