Skip to main content
Glama

🧠 Synapse Layer

RAG ruft ab. Synapse erinnert sich.

Persistente Speicherinfrastruktur für KI-Agenten — AES-256-GCM-verschlüsselt im Ruhezustand, semantische Suche, MCP-nativ.

Synapse Layer ist eine quelloffene, persistente Speicherinfrastruktur für KI-Agenten und Assistenten. Erinnerungen werden im Ruhezustand mit AES-256-GCM verschlüsselt, über pgvector HNSW für semantischen Abruf indiziert und über MCP JSON-RPC für die native Integration mit Claude, GPT, Gemini und jedem MCP-kompatiblen Client bereitgestellt. Lizenziert unter Apache 2.0.

PyPI Python Downloads MCP Compatible Official MCP Registry CI License: Apache-2.0 Smithery

Website · Dokumentation · PyPI · Forge


⚡ 30-Sekunden-Schnellstart

pip install synapse-layer
from synapse_layer import Synapse

s = Synapse(token="sk_connect_YOUR_TOKEN")

s.store("user likes coffee")
print(s.recall("what does user like?"))

Holen Sie sich Ihren Token unter forge.synapselayer.org → Dashboard → Verbinden


Related MCP server: Sylex Memory

Was ist Synapse Layer?

Die persistente Speicherschicht für KI-Agenten — das fehlende Stück zwischen zustandslosen LLMs und echter Kontextkontinuität.

Ihre KI-Agenten vergessen alles zwischen den Sitzungen. Synapse Layer behebt das.

Funktion

Beschreibung

🔐 Verschlüsselt im Ruhezustand

AES-256-GCM mit zufälliger IV pro Vorgang und HMAC-SHA-256-Integrität

🧩 Ein-Klick-Verbindung

Claude Desktop, Cursor, LangChain, CrewAI, n8n

🌐 Agentenübergreifender Speicher

Speichern in ChatGPT, abrufen in Claude

MCP-nativ

Jeder MCP-kompatible Agent

🔒 Header-basierte Authentifizierung

Tokens niemals in URLs oder Logs

🎯 Trust Quotient

Deterministischer Abruf — Erinnerungen nach Vertrauenswürdigkeit bewertet, nicht nur nach Aktualität


Warum Synapse Layer?

Ihre KI-Agenten vergessen alles zwischen den Sitzungen. Synapse Layer behebt das — in einer Zeile.

Ohne Synapse Layer

Mit Synapse Layer

Agent vergisst Kontext jede Sitzung

Persistenter Speicher über alle Sitzungen hinweg

Speicher an ein Modell gebunden

Agentenübergreifend: speichern in ChatGPT, abrufen in Claude

Keine Prüfpfad

Trust Quotient-Bewertung für jede Erinnerung

Komplexe Integration

pip install synapse-layer + 3 Codezeilen

Klartext auf Servern gespeichert

AES-256-GCM-verschlüsselt im Ruhezustand


Anwendungsfälle

  • Langzeit-Assistentenspeicher — Benutzereinstellungen, Fakten und frühere Entscheidungen über Sitzungen hinweg speichern.

  • Agentenübergreifende Kontinuität — Kontext in einem Agenten speichern und in einem anderen abrufen.

  • Sicherer Speicher für MCP-Clients — Claude Desktop, Cursor und andere MCP-kompatible Tools mit einer verwalteten Speicherschicht verbinden.

  • Operativer Speicher für Teams — Strukturierten Kontext, Vertrauensbewertung und durchsuchbaren Abruf für Produktionsagenten bereitstellen.


Installieren

pip install synapse-layer

Schnellstart

Python-Skript

from synapse_layer import Synapse

client = Synapse(token="sk_connect_YOUR_TOKEN")

# Store
client.store("User prefers dark mode and concise answers")

# Recall
results = client.recall("user preferences")
for r in results:
    print(r["content"], r["trust_quotient"])

Mit Kontextmanager

from synapse_layer import Synapse

with Synapse(token="sk_connect_YOUR_TOKEN") as client:
    client.store("User prefers dark mode and concise answers")
    results = client.recall("user preferences")
    for r in results:
        print(r["content"])

Holen Sie sich Ihren Token unter forge.synapselayer.org → Dashboard → Verbinden


13 MCP-Tools auf einen Blick

Synapse Layer stellt derzeit 13 MCP-Tools für persistente Speicher-Workflows bereit:

  • recall

  • save_to_synapse

  • process_text

  • search

  • health_check

  • initialize_context

  • save_memory

  • store_memory

  • recall_memory

  • list_memories

  • memory_feedback

  • neural_handover

  • slo_report

Diese Tools decken Speichererfassung, semantischen Abruf, strukturierte Speicherung, Feedbackschleifen, Agentenübergabe und operative Beobachtbarkeit ab.


Bereitstellungsmodi

Python-Skript-Modus

Verwenden Sie das SDK, wenn Sie direkten Python-Zugriff auf den Forge-Speicher aus Ihrer Anwendung benötigen.

Am besten geeignet für:

  • Prototypen und Skripte

  • Python-native Workflows

  • schnelle Integration in bestehende Apps

Cloud / Forge-API

Verwenden Sie Forge, wenn Sie persistenten, sitzungs- und agentenübergreifenden Speicher mit verwalteten Zugriffstoken benötigen.

Am besten geeignet für:

  • Produktionsassistenten

  • Multi-Agenten-Systeme

  • MCP-basierte Integrationen

  • Gemeinsamen Speicher über Tools und Sitzungen hinweg


MCP-Integration (Claude Desktop / Cursor)

Zu claude_desktop_config.json hinzufügen:

{
  "mcpServers": {
    "synapse-layer": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://forge.synapselayer.org/api/mcp",
        "--header",
        "x-connect-token: sk_connect_YOUR_TOKEN"
      ]
    }
  }
}

Speicherort der Konfigurationsdatei:

  • 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-basierte Authentifizierung

# 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

Sicherheit

Funktion

Implementierung

Verschlüsselung

AES-256-GCM im Ruhezustand mit zufälliger IV pro Vorgang

Integrität

HMAC-SHA-256 auf Inhalt

Authentifizierung

Header-basiert (x-connect-token) — Tokens niemals in URLs oder Logs

Privatsphäre

Inhaltsbereinigung + mandantenspezifischer verschlüsselter Speicher

Isolierung

1 Benutzer = 1 Mandant = 1 privater Verstand

Siehe SECURITY.md für die Meldung von Schwachstellen.


Verwandte Projekte

Projekt

Beschreibung

synapse-sdk-python

Python SDK — LangChain-, CrewAI- und A2A-Protokoll-Adapter

synapse-layer-skill

MCP-Skill-Konfiguration für Claude Desktop, Cursor, Windsurf

synapse-layer-langgraph

LangGraph-Checkpoint-Speicher mit verschlüsselter Zustandspersistenz


Governance

  • Alle öffentlichen Behauptungen folgen der Public Claims Matrix.

  • Architekturdetails, die Vorteile offenlegen, sind öffentlich; Mechanismen, die sie ermöglichen, sind privat.

  • Behauptung = Realität. Wenn es nicht implementiert ist, steht es nicht in der README.


Lizenz

Apache-2.0 © Synapse Layer

Available Tools

13 tools
health_checkA
Read-only
Inspect

Check service availability, engine version, and storage health. Public method.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
statusYes
versionYes
dbLatencyMsNo

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and no destructiveness, so the safety profile is clear. The description adds value by specifying what is checked (availability, engine version, storage health), which is beyond the annotations. It does not contradict annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences, front-loading the key purpose and ending with a helpful qualifier ('Public method'). Every word earns its place with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given zero parameters and the presence of an output schema, the description is complete for its simplicity. It covers the key checks performed, though it doesn't elaborate on return values (covered by output schema) or error cases. Adequate given the low complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has no parameters, so the description has nothing to add beyond specifying the general purpose. Baseline 3 is appropriate because the schema coverage is 100% and no parameter details are needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool checks 'service availability, engine version, and storage health'. It uses a specific verb ('check') and resource ('service', 'engine', 'storage'), and the 'Public method' addition distinguishes it from tools that might require authentication or have restricted access.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context that this is a health check tool, but there is no explicit guidance on when to use it versus other tools (e.g., when to use health_check vs. slo_report). However, the context is sufficient for most scenarios given its broad nature and zero parameters.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

initialize_contextA
Read-only
Inspect

Initialize a persistent memory context for a conversation or agent session. Returns REDACTED metadata by default (detail="summary"). Use detail="full" with a reason (10–200 chars) to retrieve plaintext content under MEMORY_EXPORT_GOVERNANCE_V1.

ParametersJSON Schema
NameRequiredDescriptionDefault
detailNoDetail level. "summary" (default) = redacted metadata only, no plaintext. "full" = plaintext content; REQUIRES the reason parameter and is audit-logged.
reasonNoREQUIRED only when detail="full" (10–200 chars). Audit policy: MEMORY_EXPORT_GOVERNANCE_V1. Human-readable justification for retrieving PLAINTEXT context. Without it, detail="full" WILL fail with code -32602.

Output Schema

ParametersJSON Schema
NameRequiredDescription
scopeYes
agent_idNo
memoriesNo

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Beyond the annotations (readOnlyHint=true, openWorldHint=false), the description adds significant context about the audit-logging behavior of 'full' mode, the requirement for a human-readable justification, and the failure code without it. This provides essential behavioral detail that the annotations alone do not convey, especially regarding governance compliance.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, with two sentences that efficiently convey purpose, behavior, and parameter nuances. It is well-structured with a clear front-loading of purpose followed by critical usage details for different detail levels, and every sentence is informative without waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with an output schema (implied by 'returns REDACTED metadata') and comprehensive parameter documentation, the description is largely complete. It explains the two modes, the dependency between parameters, and governance context. However, it could be slightly improved by briefly noting what happens if context is already initialized (e.g., whether it resets or updates) or if there are any side effects, given the 'initialize' verb suggests a starting state.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, and the description reinforces parameter usage by explaining that 'summary' returns redacted metadata while 'full' requires a reason and returns plaintext. It adds value beyond the schema by clarifying that 'reason' is strictly required for 'full' detail and mentioning the audit policy and error code, which aids selection.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool initializes a persistent memory context for conversations or agent sessions, using specific verbs and resources. It distinguishes itself from sibling tools like 'list_memories' and 'recall' by focusing on initialization rather than retrieval, and it provides a clear distinction between the 'summary' and 'full' detail levels.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly guides when to use each detail level, specifying that 'summary' is the default and 'full' requires a reason parameter under audit policy. However, it doesn't explicitly clarify when NOT to use this tool versus initializing memory via other means or when initialization is unnecessary, such as if context already exists.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_memoriesA
Read-only
Inspect

List memory metadata with pagination and governance limits.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum memory metadata rows to return. Hard-capped: default 5, max 10. Values above 10 are silently reduced to 10.
scopeNoExplicit memory scope. "agent" (default, fail-closed) = lists memories for the given agent_id (or the token agent). "tenant" = lists memories across all agents of the authenticated tenant.
agent_idNoAgent identifier (canonical or alias). Used only when scope="agent" or scope is inferred.

Output Schema

ParametersJSON Schema
NameRequiredDescription
countYes
totalNo
memoriesYes

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations declare readOnlyHint=true, confirming read-only behavior. The description adds beyond annotations by noting governance limits and silently reduced limits, which is valuable. However, it does not explain how pagination works (e.g., cursor continuation) or any rate limits, but given strong annotations, this is acceptable.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that clearly states the action, object, and constraints. Every word earns its place with no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema exists and annotations are strong, the description is largely complete for a listing operation. It could mention whether results are sorted or the exact content of 'metadata', but overall it provides sufficient context for an agent to use the tool effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with detailed descriptions for each parameter, so baseline is 3. The description adds a brief summary of pagination and governance, which slightly augments the schema by framing the behavior, but does not add new semantic detail beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists memory metadata with pagination and governance limits. However, while it distinguishes from most siblings that deal with memory storage or recall, it could be more specific about what 'memory metadata' includes to fully differentiate from other list-like tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implicitly suggests this is for reading metadata subject to governance, and sibling tools like 'recall_memory' and 'save_memory' indicate different use cases. However, no explicit guidance is given on when to use this versus other read tools like 'recall' or 'search', nor any mention of prerequisites or limitations.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

memory_feedbackAInspect

Submit feedback to adjust trust scoring for stored memories.

ParametersJSON Schema
NameRequiredDescriptionDefault
signalYesFeedback signal: used (auto), helpful (positive), irrelevant (negative), ignored.
memoryIdNoDeprecated camelCase alias of memory_id — still accepted for backward compatibility.
memory_idNoID of the memory to provide feedback on (canonical snake_case name).
sessionIdNoDeprecated camelCase alias of session_id — still accepted for backward compatibility.
session_idNoOptional session identifier for tracking (canonical snake_case name).

Output Schema

ParametersJSON Schema
NameRequiredDescription
trustNo
appliedYes
memoryIdYes

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=false, indicating mutation. The description adds that the tool 'adjusts trust scoring,' which is more specific. However, it does not disclose side effects (e.g., whether feedback triggers recalculation, is idempotent, or has rate limits). Given the annotation baseline, the description adds moderate value but lacks depth.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence of only eight words. Every word contributes meaning with no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 5 parameters (1 required) and an output schema, the description is minimal. It covers the core purpose but does not explain what the feedback signals mean, how trust scoring is adjusted, or when to provide each signal. While the output schema may document the response, the description lacks enough context for an agent to use the tool reliably without external knowledge.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with each parameter already well described in the input schema (e.g., deprecation notes for camelCase aliases, enum values for signal). The tool description itself adds no additional parameter semantics beyond what is in the schema, so the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific verb and resource: 'Submit feedback to adjust trust scoring for stored memories.' This distinguishes it from sibling tools like save_memory, list_memories, and recall, which deal with creating, listing, or retrieving memories rather than providing feedback.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It does not mention contexts where feedback is appropriate, prerequisites, or exclusions. For example, it does not clarify whether feedback should be given after using a memory or after ignoring it, nor does it contrast with tools like save_memory or recall.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

neural_handoverAInspect

Transfer contextual state between agents with continuity controls.

ParametersJSON Schema
NameRequiredDescriptionDefault
tokenYesThe handover token (64 hex chars). Generated by the source agent/user in Forge UI.
reasonYesREQUIRED (10–200 chars). Human-readable justification for consuming this handover. Example: "Receiving project context from Claude session."
consuming_agentNoAgent identifier consuming the handover (defaults to token agent).

Output Schema

ParametersJSON Schema
NameRequiredDescription
statusYes
handoverIdNo

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations are minimal (readOnlyHint=false, openWorldHint=false), so the description carries the behavioral burden. It signals mutation ('transfer') and 'continuity controls' but does not detail side effects (e.g., token invalidation, auth requirements beyond the token parameter, idempotency). The parameter descriptions in the schema add some transparency (token generation source, reason constraints), which prevents a lower score.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no wasted words. Every term ('Transfer', 'contextual state', 'between agents', 'continuity controls') contributes to conveying the core function. Appropriate for a tool with a clear, narrow purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 3 parameters, an output schema, and sibling tools, the description is minimally adequate. It explains the primary action but omits context like prerequisites (e.g., need an existing handover token) or what 'continuity controls' entail. Not incomplete enough for a 2, but leaves key behavioral questions unanswered.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% with each parameter already well-documented (token as 64 hex chars from Forge UI, reason with length and example, consuming_agent with default). The tool description adds no additional meaning beyond the schema; thus the baseline score of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Transfer contextual state between agents with continuity controls' uses a specific verb ('transfer') and resource ('contextual state') and clearly distinguishes this tool from sibling tools (health_check, memory operations, etc.) by focusing on cross-agent state transfer. No tautology or vagueness.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool vs. alternatives. Sibling tools include many memory-related operations (save_to_synapse, list_memories, recall, etc.), but no explicit context, exclusions, or alternative recommendations are given. The agent is left to infer usage without clear direction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

process_textAInspect

Extract candidate memories from free-form text with governance filters and sanitization.

ParametersJSON Schema
NameRequiredDescriptionDefault
textYesFree-form text to scan for auto-save triggers.
sourceNoSource identifier (default: mcp).
projectNoForce a specific project (e.g., SYNAPSE_LAYER, OFFLY). Auto-detected if omitted.
agent_idNoAgent identifier. Defaults to "default".

Output Schema

ParametersJSON Schema
NameRequiredDescription
extractedYes
storedCountYes

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description mentions governance filters and sanitization, which adds context beyond the annotations (readOnlyHint=false, openWorldHint=false). The description does not contradict annotations. However, it does not detail what the governance filters do, how sanitization works, or what side effects occur (e.g., does it actually save anything or just extract?). The return value details are covered by the output schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single clear sentence that conveys the core purpose and key features. It could potentially mention the output schema or provide a brief example, but it's well-structured and front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema exists (covering return values), the description appropriately addresses the tool's operation. The four parameters are well-documented in the schema. The description could mention that the tool has auto-detection of projects, but that's covered in the schema description. Overall, quite complete for this complexity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% coverage, describing each parameter. The description adds value by contextualizing the 'text' parameter as being scanned for 'auto-save triggers', and 'project' as having auto-detection with specific examples (SYNAPSE_LAYER, OFFLY). Baseline 3 is appropriate since the schema already covers details.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb-resource pair ('Extract candidate memories') and mentions governance filters and sanitization, which distinguishes it from sibling tools like save_memory or store_memory. However, it could more explicitly differentiate itself from search or recall tools that also deal with text.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is for processing free-form text in an auto-save context, but provides no explicit guidance on when to use this vs. related tools like save_memory or store_memory. No alternatives or when-not-to-use instructions are given.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

recallA
Read-only
Inspect

Retrieve relevant persisted memory using semantic, temporal, priority, or hybrid routing. Governance: requires reason (10–200 chars). Rate limit: 20/min.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNoRecall routing mode. "temporal" = pure chronological, "semantic" = FTS + TQ ranking, "priority" = critical/high-TQ first, "hybrid" = weighted blend, "auto" = detect from query (default).
limitNoMaximum memories to return (1–50, default: 10).
queryYesWhat to recall — natural language query for memory retrieval.
scopeNoExplicit memory scope. "agent" (default, fail-closed) = limits recall to the given agent_id (or the token agent). "tenant" = cross-agent recall within the authenticated tenant. If omitted with agent_id present, "agent" is inferred; if both omitted, the token agent is used (verified-token scope).
reasonYesREQUIRED (10–200 chars). Audit policy: MEMORY_EXPORT_GOVERNANCE_V1. Human-readable justification for retrieving PLAINTEXT memory. Without this parameter the call WILL fail with code -32602. Example: "User asked me to summarize last week decisions."
agent_idNoAgent identifier (canonical or alias). Used only when scope="agent" or scope is inferred.

Output Schema

ParametersJSON Schema
NameRequiredDescription
countYes
scopeYes
memoriesYes

TDQS

A3.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already provide readOnlyHint=true, so the read-only nature is covered. The description adds meaningful behavioral context by requiring a human-readable reason (10–200 chars) and stating a rate limit of 20/min, which are governance and operational constraints beyond what annotations declare. This is exactly the kind of context that helps an agent understand side conditions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, immediately states the primary action, and then packs governance and rate-limit details without any fluff. Every word earns its place, and the structure is front-loaded with the core purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the rich input schema (100% coverage), output schema presence, and annotations, the description is sufficient to convey what the tool does and key constraints. It lacks explicit alternative usage guidance, but the combination of schema + annotations + concise description covers most of the operational context needed. A slightly stronger mention of when to prefer this over sibling tools would make it a 5.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all six parameters are already documented with detailed meanings. The description adds little beyond the schema—it mentions routing modes but the schema already enumerates and explains them. This aligns with the baseline score of 3, as the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Retrieve relevant persisted memory') and specifies routing modes (semantic, temporal, priority, hybrid), giving a specific verb+resource. However, it does not explicitly differentiate from the sibling tool 'recall_memory', which likely serves a very similar purpose, so it misses the full 'distinguishes from siblings' bar.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no explicit guidance on when to use this tool versus alternatives. It mentions governance (required reason) and a rate limit, but these are constraints, not usage direction. There is no 'use this when...' or 'instead of...' context, so the agent has limited help in choosing between 'recall' and siblings like 'search' or 'list_memories'.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

recall_memoryA
Read-only
Inspect

Recall persisted memory by query. Alias of recall.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNoRecall routing mode.
limitNoMaximum memories to return (1–50, default: 10).
queryYesWhat to recall — natural language query for memory retrieval.
scopeNoExplicit memory scope. "agent" (default, fail-closed) = limits recall to the given agent_id (or the token agent). "tenant" = cross-agent recall within the authenticated tenant. If omitted with agent_id present, "agent" is inferred; if both omitted, the token agent is used (verified-token scope).
reasonYesREQUIRED (10–200 chars). Audit policy: MEMORY_EXPORT_GOVERNANCE_V1. Without this the call WILL fail with code -32602. Example: "Checking user project status."
agent_idNoAgent identifier (canonical or alias). Used only when scope="agent" or scope is inferred.

Output Schema

ParametersJSON Schema
NameRequiredDescription
countYes
scopeYes
memoriesYes

TDQS

A3.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, so the tool is read-only—the description does not contradict this and adds context about the 'reason' parameter's audit policy and required length (10–200 chars). This reveals behavioral constraints beyond annotations, such as the governance requirement for audit. No annotation contradiction detected.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very short (two sentences) but somewhat front-loaded. The first sentence defines the core purpose, but the second ('Alias of recall') is redundant given the sibling tool name. The description could be restructured to include usage guidance without adding length.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the presence of an output schema and 100% schema coverage, the description's lack of detail on return values is acceptable. However, the tool has 6 parameters (2 required, 2 with enums) and is part of a larger set of memory-related siblings—without usage examples or mode guidance, the completeness is adequate but not excellent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description provides a high-level purpose but adds minimal extra meaning beyond the schema's already detailed parameter descriptions. It does not elaborate on how modes differ or how to choose between them, so value added over schema is limited.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool recalls persisted memory by query, which is a specific verb-resource combination. However, the alias relationship with 'recall' is noted but not distinguished—the description says 'Alias of recall' without explaining when to prefer one over the other, which slightly reduces clarity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description lacks explicit guidance on when to use this tool vs alternatives like 'recall' or 'list_memories'. While the parameter descriptions hint at scope and mode options, there is no direct comparison or exclusion criteria. The alias note is present but unhelpful for decision-making.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

save_memoryC
Idempotent
Inspect

Save a memory entry to the persistent store. Alias of save_to_synapse.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNoTags for categorization.
contentYesThe memory content to store securely.
agent_idNoAgent identifier for memory isolation.
force_intentNoMANUAL OVERRIDE ONLY — use apenas quando você (humano) quer forçar explicitamente a classificação de intenção. Valores reconhecidos: preference | fact | procedural | bio | critical | operational | strategic | compliance | security | system_directive | clinical | general | ephemeral. Se não tiver certeza, NÃO preencha este campo — o sistema classifica automaticamente. Valores não reconhecidos são ignorados silenciosamente e retornados em warnings.
intent_reasonNoAuditable reason for forcing intent classification. Max 500 characters. Ignored if force_intent is absent.

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYes
scopeYes
storedYes

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds 'persistent store' but otherwise repeats what annotations already provide (write operation via 'Save', idempotentHint via implication). It does not disclose behavioral traits like idempotency behavior, overwrite policy, or any side effects beyond the annotation's idempotentHint.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences, front-loaded with the core purpose, and every sentence serves a purpose (purpose + alias clarification). Could be more tightly integrated but efficient overall.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With 5 parameters, a complex force_intent field, and an output schema, the description is too sparse. It omits guidance on parameter usage (e.g., agent_id for isolation, force_intent manual override) and does not set expectations for results.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description does not provide any additional meaning beyond the schema for the 5 parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool saves a memory entry to the persistent store, providing a specific verb and resource. However, it does not differentiate from sibling tools like store_memory or recall_memory, merely noting it is an alias of save_to_synapse.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given on when to use this tool vs alternatives. The description only mentions it is an alias of save_to_synapse, but does not explain the distinction between the two or when to pick one over the other (e.g., store_memory).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

save_to_synapseA
Idempotent
Inspect

Persist memory with encryption at rest, sanitization, and deduplication controls.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNoTags for categorization.
typeNoEvent type: [MILESTONE], [DECISION], [ALERT], [AUTO-STRAT], [AUTO-OP], [AUTO-INSIGHT], [AUTO-DECISION], [AUTO-CONTEXT], [MANUAL].
contentYesThe memory content to store securely.
projectNoProject identifier (e.g., SYNAPSE_LAYER).
agent_idNoAgent identifier for memory isolation. Defaults to "default".
importanceNoImportance level 1–5 (default: 3).
force_intentNoMANUAL OVERRIDE ONLY — use apenas quando você (humano) quer forçar explicitamente a classificação de intenção. Valores reconhecidos: preference | fact | procedural | bio | critical | operational | strategic | compliance | security | system_directive | clinical | general | ephemeral. Se não tiver certeza, NÃO preencha este campo — o sistema classifica automaticamente. Valores não reconhecidos são ignorados silenciosamente e retornados em warnings.
intent_reasonNoAuditable reason for forcing intent classification. Max 500 characters. Ignored if force_intent is absent.

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYes
scopeYes
storedYes

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations confirm no read-only or open-world behavior, and idempotentHint is true. The description adds encryption, sanitization, and deduplication details. However, no mention of what happens with duplicates, authorization needs, or potential side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that succinctly captures core features: encryption, sanitization, deduplication. No wasted words; front-loaded with key behavioral traits.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema exists and schema coverage is complete, the description does not need to explain return values. It briefly mentions security controls but could elaborate on deduplication behavior or conflict resolution for repeated saves.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, and the description does not repeat parameter details. However, the 'force_intent' parameter is well-documented with clear usage guidance and warnings, which adds valuable semantics beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool persists memory with encryption, sanitization, and deduplication. It identifies the action ('save') and the resource ('synapse'). However, it does not differentiate from siblings like 'save_memory' or 'store_memory', which seem similar.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool vs alternatives such as 'save_memory', 'store_memory', or 'recall_memory'. The description implies general persistence, but lacks context-specific usage criteria or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

slo_reportB
Read-only
Inspect

Return uptime and SLO metrics for the MCP service.

ParametersJSON Schema
NameRequiredDescriptionDefault
admin_tokenYesAdmin authentication token. Must match ADMIN_TOKEN environment variable.
window_hoursNoTime windows in hours for the report. Default: [24, 168] (24h + 7d).

Output Schema

ParametersJSON Schema
NameRequiredDescription
p50No
p95No
uptimeYes
windowNo
errorRateNo

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, so the description adds no further behavioral disclosure. It does not mention auth requirements beyond the schema, rate limits, or potential side effects. The description is purely a restatement of the tool's purpose.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence with no filler words. It is appropriately concise for a simple tool, though it could be slightly more informative without sacrificing conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having an output schema and simple parameters, the description omits important context such as the requirement for admin authentication, the default time windows, and the relationship to health_check. The agent is left with insufficient guidance for correct invocation beyond the schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds no parameter information beyond what the schema already provides; it does not mention either admin_token or window_hours. The agent must rely entirely on the schema for parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool returns 'uptime and SLO metrics for the MCP service,' using a specific verb and resource. It distinguishes itself from sibling tools like health_check, which likely returns a simpler health status, and other tools focused on memory or text processing.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives such as health_check, nor does it mention prerequisites (e.g., the need for an admin token) or when not to use it. The agent must infer usage from the parameter schema alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

store_memoryB
Idempotent
Inspect

Store structured memory with metadata and trust scoring.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNoTags for categorization.
contentYesThe memory content to store securely.
agent_idNoAgent identifier for memory isolation. Defaults to "default".
force_intentNoMANUAL OVERRIDE ONLY — use apenas quando você (humano) quer forçar explicitamente a classificação de intenção. Valores reconhecidos: preference | fact | procedural | bio | critical | operational | strategic | compliance | security | system_directive | clinical | general | ephemeral. Se não tiver certeza, NÃO preencha este campo — o sistema classifica automaticamente. Valores não reconhecidos são ignorados silenciosamente e retornados em warnings.
intent_reasonNoAuditable reason for forcing intent classification. Max 500 characters. Ignored if force_intent is absent.

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYes
scopeYes
storedYes

TDQS

B3.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=false and idempotentHint=true, which covers the write nature and retry safety. The description adds 'trust scoring' as a behavioral hint but does not disclose side effects, permissions, or how trust scoring works. No contradiction with annotations exists, so a baseline score with some added value is appropriate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no filler or redundancy. It front-loads the core action and object. However, it is under-specified for the tool's apparent complexity, which slightly detracts from effectiveness but does not hurt conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite rich schema descriptions and an output schema, the tool description is too sparse given the tool's complexity (5 parameters, trust scoring, force_intent override) and the crowded sibling set. It omits any contextual framing around when to use it, how it relates to save_memory/save_to_synapse, or what trust scoring entails, leaving the agent without enough high-level guidance.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% (all 5 parameters have descriptions), so the schema carries the parameter meaning. The description only vaguely references 'metadata' which could correspond to tags or other fields, adding no concrete semantic detail beyond the schema. Thus baseline 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Store structured memory with metadata and trust scoring' clearly identifies the action (store) and the resource (structured memory), and adds distinctive features (metadata, trust scoring). However, it does not explicitly differentiate from sibling tools like save_memory or save_to_synapse, though the qualifiers 'structured' and 'trust scoring' offer some distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives such as save_memory, recall_memory, or save_to_synapse. It lacks any mention of context, exclusions, or recommended conditions, leaving the agent without selection criteria.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 13 tool updatesv2.4.6
    • First observedhealth_check
    • First observedinitialize_context
    • First observedlist_memories
    • First observedmemory_feedback
    • First observedneural_handover
    • First observedprocess_text
    • First observedrecall
    • First observedrecall_memory
    • First observedsave_memory
    • First observedsave_to_synapse
    • First observedsearch
    • First observedslo_report
    • First observedstore_memory

TDQS

B3.4/5.0
Disambiguation3/5

There is overlap between `save_memory` and `save_to_synapse` (aliases), and `recall_memory` and `recall` (aliases), which creates ambiguity. `save_to_synapse` and `store_memory` also have very similar purposes, potentially causing misselection.

Naming Consistency3/5

Most tools use a verb_noun pattern (e.g., list_memories, save_memory, recall_memory), but `neural_handover` breaks this pattern by using an adjective_noun. `slo_report` is a contraction that doesn't follow the strict verb_noun structure, introducing inconsistency.

Tool Count4/5

With 13 tools, the count is within the well-scoped range (3-15). The presence of aliases inflates the number slightly, but otherwise, each non-alias tool serves a distinct purpose, making the count appropriate.

Completeness4/5

The tool surface covers core CRUD operations (save, recall, list, search) and lifecycle operations (initialize, feedback, handover). Minor gaps exist, such as missing explicit update or delete tools for memories, but the domain coverage is generally strong.

Maintenance

ActivityMaintained
ResponsivenessWithin a week

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    Provides persistent memory for AI agents via 10 MCP tools that map to the AgentRAM REST API, enabling store, retrieve, search, and share memories across personal and shared namespaces.
    10
    57
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    Provides persistent, searchable memory for MCP-compatible agents, enabling recall by meaning, automatic decay, trust scoring, and cross-agent handoffs.
    5
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/SynapseLayer/synapse-layer'

If you have feedback or need assistance with the MCP directory API, please join our Discord server