@@ -40,7 +40,7 @@ configSchema:
4040
4141tools :
4242 - name : recall
43- description : " Retrieves relevant past context and decisions. Supports routing modes (auto/temporal/semantic/priority/ hybrid) ."
43+ description : " Retrieve relevant persisted memory using semantic, temporal, priority, or hybrid routing ."
4444 inputSchema :
4545 type : object
4646 required : [query, reason]
6767 enum : [auto, temporal, semantic, priority, hybrid]
6868
6969 - name : save_to_synapse
70- description : " Stores structured memory securely using AES-256-GCM encryption at rest with sanitization and deduplication."
70+ description : " Persist memory with encryption at rest, sanitization, and deduplication controls ."
7171 inputSchema :
7272 type : object
7373 required : [content]
9494 type : string
9595
9696 - name : process_text
97- description : " Extracts and persists structured memory from free-form text. Detects milestones, decisions, and alerts ."
97+ description : " Extract candidate memories from free-form text with governance filters and sanitization ."
9898 inputSchema :
9999 type : object
100100 required : [text]
@@ -113,7 +113,7 @@ tools:
113113 description : " Source identifier (default: mcp)."
114114
115115 - name : search
116- description : " Cross-agent memory search with full-text and semantic matching. Supports scope filtering ."
116+ description : " Search persisted memory across agent scopes using full-text matching."
117117 inputSchema :
118118 type : object
119119 required : [query]
@@ -133,19 +133,19 @@ tools:
133133 description : " Maximum results to return (1–50, default: 20)."
134134
135135 - name : health_check
136- description : " Verify system availability and memory pipeline integrity ."
136+ description : " Check service availability, engine version, and storage health. Public method ."
137137 inputSchema :
138138 type : object
139139 properties : {}
140140
141141 - name : initialize_context
142- description : " Loads persistent memory context and user profile at conversation start ."
142+ description : " Initialize a persistent memory context for a conversation or agent session ."
143143 inputSchema :
144144 type : object
145145 properties : {}
146146
147147 - name : save_memory
148- description : " Save a memory with AES-256-GCM encryption . Alias for save_to_synapse with tag support ."
148+ description : " Save a memory entry to the persistent store . Alias of save_to_synapse."
149149 inputSchema :
150150 type : object
151151 required : [content]
@@ -163,7 +163,7 @@ tools:
163163 type : string
164164
165165 - name : store_memory
166- description : " Store context, preferences, or facts with AES-256-GCM encryption. Canonical memory persistence endpoint ."
166+ description : " Store structured memory with metadata and trust scoring ."
167167 inputSchema :
168168 type : object
169169 required : [content]
@@ -181,7 +181,7 @@ tools:
181181 type : string
182182
183183 - name : recall_memory
184- description : " Retrieves long-term memory (alias for recall). Supports routing modes and scope filtering ."
184+ description : " Recall persisted memory by query. Alias of recall ."
185185 inputSchema :
186186 type : object
187187 required : [query, reason]
@@ -208,7 +208,7 @@ tools:
208208 enum : [auto, temporal, semantic, priority, hybrid]
209209
210210 - name : list_memories
211- description : " List memory metadata (id, createdAt, tags, summary) without exposing plaintext content ."
211+ description : " List memory metadata with pagination and governance limits ."
212212 inputSchema :
213213 type : object
214214 properties :
@@ -224,7 +224,7 @@ tools:
224224 description : " Maximum rows to return (default: 5, max: 10)."
225225
226226 - name : memory_feedback
227- description : " Record feedback on a recalled memory to improve future recall quality ."
227+ description : " Submit feedback to adjust trust scoring for stored memories ."
228228 inputSchema :
229229 type : object
230230 required : [memoryId, signal]
@@ -241,7 +241,7 @@ tools:
241241 description : " Optional session identifier for tracking."
242242
243243 - name : neural_handover
244- description : " Secure Agent Handover V2 — Consume a one-time encrypted handover token from another agent context ."
244+ description : " Transfer contextual state between agents with continuity controls ."
245245 inputSchema :
246246 type : object
247247 required : [token, reason]
@@ -257,7 +257,7 @@ tools:
257257 description : " Agent identifier consuming the handover."
258258
259259 - name : slo_report
260- description : " Admin-only SLO observability report with percentile latencies and per-tool breakdown ."
260+ description : " Return uptime and SLO metrics for the MCP service ."
261261 inputSchema :
262262 type : object
263263 required : [admin_token]
0 commit comments