synapse-layer
mcp
Warn
Health Warn
- License — License: Apache-2.0
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Low visibility — Only 7 GitHub stars
Code Pass
- Code scan — Scanned 12 files during light audit, no dangerous patterns found
Permissions Pass
- Permissions — No dangerous permissions requested
No AI report is available for this listing yet.
Synapse Layer — Continuous Consciousness Infrastructure for AI Systems. Persistent. Secure. 1-line integration.
README.md
What is Synapse Layer?
The persistent memory layer for AI agents — the missing piece between stateless LLMs and real continuity of context.
Your AI agents forget everything between sessions. Synapse Layer fixes that.
| Feature | Description |
|---|---|
| 🔐 Zero-knowledge | AES-256-GCM — server never sees plaintext |
| 🧩 One-click connect | Claude Desktop, Cursor, LangChain, n8n |
| 🌐 Cross-agent memory | Save in ChatGPT, recall in Claude |
| ⚡ MCP-native | Any MCP-compatible agent |
| 🔒 Header-first auth | Tokens never in URLs or logs |
Install
pip install synapse-layer
Quick Start
from synapse_memory import SynapseMemory
memory = SynapseMemory(token="sk_connect_YOUR_TOKEN")
# Save
memory.save("User prefers dark mode and concise answers")
# Recall
results = memory.recall("user preferences")
for r in results:
print(r['content'])
Get your token at synapselayer.org → Dashboard → Connect
MCP Integration (Claude Desktop / Cursor)
Add to claude_desktop_config.json:
{
"mcpServers": {
"synapse-layer": {
"command": "npx",
"args": [
"mcp-remote",
"https://forge.synapselayer.org/mcp",
"--header",
"x-connect-token: sk_connect_YOUR_TOKEN"
]
}
}
}
Config file location:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
API — Header-First Auth
# Health check
curl -H "x-connect-token: sk_connect_YOUR_TOKEN" \
https://forge.synapselayer.org/api/connect/health
# Save memory
curl -X POST \
-H "x-connect-token: sk_connect_YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"content": "User is a Python developer"}' \
https://forge.synapselayer.org/api/v1/capture
Security
| Feature | Implementation |
|---|---|
| Encryption | AES-256-GCM at rest |
| Auth | Header-first (x-connect-token) |
| Token exposure | Never in URLs or logs |
| CI protection | secret-scan.yml on every commit |
| Zero-knowledge | Server never sees plaintext |
| Security score | 10.0 / 10 (MCP Marketplace) |
See SECURITY.md for vulnerability reporting.
License
MIT © Synapse Layer — v1.2.0
Reviews (0)
Sign in to leave a review.
Leave a reviewNo results found