Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions server.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.SynapseLayer/synapse-layer",
"title": "Synapse Layer — Persistent Memory Infrastructure",
"description": "Persistent memory infrastructure for AI agents — encrypted, governed, and cross-agent. Server never sees plaintext.",
"version": "2.3.0",
"title": "Synapse Layer",
"description": "Persistent memory infrastructure for AI agents — encrypted, governed, and cross-agent. State Continuity Layer.",
"version": "2.3.2",
"websiteUrl": "https://synapselayer.org",
"repository": {
"url": "https://github.com/SynapseLayer/synapse-layer",
Expand All @@ -13,7 +13,7 @@
{
"registryType": "pypi",
"identifier": "synapse-layer",
"version": "2.3.0",
"version": "2.3.2",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
Expand Down
17 changes: 8 additions & 9 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
qualifiedName: "@synapselayer/synapse-protocol"
displayName: "Synapse Layer — Persistent Memory Infrastructure"
displayName: "Synapse Layer"
description: >
Persistent memory infrastructure for AI agents — encrypted,
governed, and cross-agent. Server never sees plaintext.
version: "2.3.0"
governed, and cross-agent. State Continuity Layer.
version: "2.3.2"
icon: "🧠"
sourceUrl: "https://github.com/SynapseLayer/synapse-layer"
homepage: "https://synapselayer.org"
Expand Down Expand Up @@ -34,7 +34,7 @@ configSchema:

tools:
- name: recall
description: "Retrieves past context, decisions, and preferences from encrypted memory. Call before responding when prior context may exist."
description: "Retrieves relevant past context and decisions to maintain continuity across interactions."
inputSchema:
type: object
required: [query]
Expand All @@ -50,7 +50,7 @@ tools:
description: "Maximum memories to return (1-50, default: 10)"

- name: save_to_synapse
description: "Persists user preferences, task progress, and facts with AES-256-GCM encryption. Server never sees plaintext."
description: "Stores structured memory securely using AES-256-GCM encryption. Server never sees plaintext."
inputSchema:
type: object
required: [content]
Expand All @@ -63,7 +63,7 @@ tools:
description: "Agent identifier. Defaults to 'default'."

- name: process_text
description: "Self-extracting memory engine. Automatically identifies and stores relevant facts from text. Never stores secrets, credentials, or financial data."
description: "Extracts and persists structured memory from text input to maintain long-term context."
inputSchema:
type: object
required: [text]
Expand All @@ -76,7 +76,7 @@ tools:
description: "Agent identifier. Defaults to 'default'."

- name: search
description: "Cross-agent semantic memory search with TRUTH QUOTIENT™ ranking. Returns results across all agents matching the query."
description: "Searches across stored memory using semantic retrieval. Returns results ranked by relevance and confidence."
inputSchema:
type: object
required: [query]
Expand All @@ -92,7 +92,7 @@ tools:
description: "Maximum results to return (1-50, default: 20)"

- name: health_check
description: "Verify system availability and memory pipeline integrity. Call on first execution."
description: "Verify system availability and memory pipeline integrity."
inputSchema:
type: object
properties: {}
Expand All @@ -102,7 +102,6 @@ tags:
- persistent-context
- long-term-memory
- mcp-memory
- truth-quotient
- aes-256-gcm
- pii-redaction
- mcp
Expand Down
Loading