Fix Memory MCP
Server Quality Checklist
Latest release: v0.3.5
- Disambiguation4/5
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.
Naming Consistency5/5All tool names follow a consistent verb_noun pattern using snake_case (assemble_context, manage_memory, maintain_memory_lifecycle), making the naming predictable and uniform.
Tool Count5/5With only 3 tools, the server is well-scoped and concise, covering context assembly, memory management, and lifecycle operations without unnecessary bloat.
Completeness4/5The 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.
Average 2/5 across 3 of 3 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 13 commits in the last 12 weeks
- Last stable release on
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI is passing
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior1/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of disclosing behavioral traits. It gives no information about side effects, permissions, state changes, or whether actions are destructive. The 26 possible actions include delete, archive, and project_apply, but the description provides zero detail about their consequences.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness2/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is only one sentence, but that brevity comes at the cost of necessary information. It is under-specified and fails to convey the tool's complexity, making it more of a placeholder than a genuinely concise explanation.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness1/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (39 parameters, 26 actions, no annotations), the description is extremely inadequate. Even though an output schema exists, it does not compensate for the missing action semantics, parameter relationships, or usage context, making the tool nearly impossible to use correctly from the description alone.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters1/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description adds no explanation for any of the 39 parameters. It does not even mention the required 'action' parameter or its enum values, leaving the agent to guess which parameters apply to which actions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose3/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states it manages 'ordinary memory' and 'explicit project control-plane operations,' which identifies a broad resource area but lacks specificity about what actions can be performed. It does not differentiate from sibling tools like maintain_memory_lifecycle, which likely overlaps in lifecycle actions such as archive, expire, and delete.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus its siblings (assemble_context, maintain_memory_lifecycle). It does not mention context assembly or lifecycle maintenance as alternatives, leaving the agent to infer appropriate usage from the listed actions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior1/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description bears full responsibility for disclosing behavioral traits. It only states that it 'runs explicit lifecycle maintenance' and 'recovers safe prepared card writes', but does not explain side effects, required permissions, whether actions are destructive, or what 'safe' means. This is critically opaque for an operation-oriented tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness3/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with no wasted words, which is concise in length. However, the phrasing is unclear and not front-loaded with a plain-language explanation of the tool's primary purpose, making it less effective than it could be despite its brevity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness1/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having an output schema, the description is wholly inadequate for a specialized tool. It does not explain the underlying concept of 'cards', what lifecycle maintenance entails, when recovery is needed, or what the output represents. With no annotations and no parameter guidance, this leaves the agent without essential context to use the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters, so the baseline for this dimension is 4. The description does not need to elaborate on parameter meanings because there are none, and the empty input schema is fully consistent with this.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose2/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses vague, domain-specific jargon ('lifecycle maintenance', 'safe prepared card writes') without explaining what these mean or what the tool actually does. It is not a tautology, but it fails to clearly identify the tool's action and resource, especially compared to siblings like assemble_context and manage_memory.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines1/5Does 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 assemble_context or manage_memory. There are no conditions, prerequisites, or exclusions mentioned, leaving the agent without any signal for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full responsibility for behavioral disclosure. It vaguely suggests a selective role ('minimal', 'relevant') but does not state whether it modifies state, requires auth, returns specific data formats, or has side effects. This is a significant gap for a tool with 16 parameters.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness2/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one sentence, making it short, but for a tool with 16 parameters and no annotations, this is under-specification rather than genuine conciseness. The single sentence does not earn its place by providing sufficient detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness1/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (16 params, no annotations, no sibling differentiation), the description is severely incomplete. It omits return behavior (despite an output schema existing), usage context, and parameter semantics, making it nearly impossible for an agent to use correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters1/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate, but it does not. The one-sentence description adds no parameter meaning beyond the raw parameter names, leaving 16 parameters (including budgets, keys, and flags) undocumented.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Assemble' and names the resources (Core Context, policy, relevant memory) for a task, which clearly distinguishes it from sibling memory-management tools. However, terms like 'Core Context' and 'effective policy' are jargon that could benefit from elaboration.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does 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 the siblings (manage_memory, maintain_memory_lifecycle), no exclusions, and no alternative recommendations. The purpose implies some context, but usage context is entirely absent.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/l111403717-cloud/fix-memory-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server