memory-bridge
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_memoriesA | Search memories saved in previous sessions, across all projects and shared namespaces. Use this when the user asks if you remember something, references past conversations, or when you want to check for existing knowledge before a task. Args: query: Keywords to search for. scope: "all" | "shared" | "project" | a namespace name. project: Limit to a specific project (name or id). limit: Max results (default 10). |
| promote_memoryA | Save a memory to a shared namespace so it persists across sessions and multiple projects can access it. Use when the user teaches you something that applies beyond the current project. Args: content: The memory content to promote. target_namespace: Namespace to promote into (created if missing). source_project: Original project (name or id). title: Title for the shared memory. description: One-line description. memory_type: user / feedback / project / reference. tags: Comma-separated tags. source_memory_id: If promoting an existing memory, its id. remove_source: Remove the original after promotion. |
| list_shared_memoriesA | List memories saved across sessions in shared namespaces. If namespace is omitted, shows all namespaces and their summaries. Args: namespace: A specific namespace to list memories from. |
| sync_memoryA | Copy a memory to one or more specific projects so they can use it in future sessions. Args: content: The memory content. target_projects: Comma-separated list of project names or ids. title: Memory title. description: One-line description. memory_type: user / feedback / project / reference. tags: Comma-separated tags. |
| get_memory_healthA | Analyze saved memory health across all projects and sessions. Reports duplicates, stale memories, index integrity, and actionable suggestions. Args: fix_indexes: If true, rebuild all MEMORY.md indexes from actual files on disk. |
| manage_namespacesA | Create, delete, subscribe, unsubscribe, or list namespaces. Args: action: "create" | "delete" | "subscribe" | "unsubscribe" | "list" namespace: Namespace name (required for all except "list"). description: Description (for "create"). project: Project name or id (for "subscribe" / "unsubscribe"). tags: Comma-separated tags (for "create"). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| check_memory | Check what you remember about a topic from previous sessions. |
| save_knowledge | Save knowledge to a shared namespace so all projects can use it. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool targets a distinct operation: health analysis, listing shared memories, namespace management, promotion to shared, searching, and syncing to projects. No two tools have overlapping purposes.
All tools use consistent snake_case verb_noun pattern (get_, list_, manage_, promote_, search_, sync_), making them predictable and easy to distinguish.
Six tools cover the core memory management tasks without unnecessary duplication. The count feels well-scoped for a memory bridge server.
The set covers health checks, listing, namespace management, promotion, search, and syncing. Missing direct memory deletion or retrieval by ID, but the core workflow of saving and sharing memories is complete.