Fix Memory MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FIX_MEMORY_ROOT | No | Path to the data directory for fix memory cases. Defaults to the 'data' folder relative to the server script. |
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 |
|---|---|
| assemble_contextC | Assemble minimal Core Context, effective policy, and relevant memory for a task. |
| manage_memoryD | Manage ordinary memory and explicit project control-plane operations. |
| maintain_memory_lifecycleD | Run explicit lifecycle maintenance and recover safe prepared card writes. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
The tools target distinct aspects: context assembly, general memory management, and lifecycle maintenance. However, manage_memory and maintain_memory_lifecycle could be confused due to overlapping scope, though descriptions help separate them.
All tool names follow a consistent verb_noun pattern using snake_case (assemble_context, manage_memory, maintain_memory_lifecycle), making the naming predictable and uniform.
With only 3 tools, the server is well-scoped and concise, covering context assembly, memory management, and lifecycle operations without unnecessary bloat.
The toolset covers the core memory lifecycle: assembling context, managing memory, and performing maintenance/recovery. Minor gaps like explicit search or list operations may exist, but manage_memory likely encompasses them.