# Synapse Layer

### Synapse Layer — The Memory Standard for AI Agents

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add synapselayer/synapse-protocol

# Browse available tools
npx -y @smithery/cli@latest tool list synapselayer/synapse-protocol

# Get full schema for a tool
npx -y @smithery/cli@latest tool get synapselayer/synapse-protocol process_text

# Call a tool
npx -y @smithery/cli@latest tool call synapselayer/synapse-protocol process_text '{}'
```

## Direct MCP Connection

Endpoint: `https://synapse-layer--synapselayer.run.tools`

## Tools (4)

- `process_text` — Scans free-form text for auto-save triggers (milestones, decisions, alerts, strategic events). Detected events pass thr…
- `save_to_synapse` — Directly save a structured memory event. Content passes through PII/secret redaction, deduplication, and is persisted w…
- `backfill_embeddings` — Process pending embedding jobs. Generates vector embeddings for recently stored memories that were persisted with embed…
- `health_check` — Returns system health status including database connectivity, memory count, pending embedding jobs, and engine version.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get synapselayer/synapse-protocol <tool-name>
```
