Skip to main content
Glama
xiaobenyang-com

Remember-Memory

分类记忆服务器 Remember Memory

一个基于分类的持久化记忆系统实现,允许Claude跨聊天会话存储和检索分类记忆信息。 An implementation of a classification-based persistent memory system that enables Claude to store and retrieve classified memory information across chat sessions## 工具列表 Tool List

本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。 本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能。

工具 Tool

描述 Description

remember_memory

Stores a memory with optional tags in a specified category

retrieve_memories

Retrieves all memories from a specified category

remove_memory_category

Removes all memories within a specified category

remove_specific_memory

Removes a specific memory within a specified category

检查服务 ## Inspector

工具在线测试: https://mcp.xiaobenyang.com/inspector/1777316659460099

Online Tool test https://mcp.xiaobenyang.com/inspector/1777316659460099

Related MCP server: Claude Memory MCP Server

服务配置 MCP Server Config

如何获取 XBY-APIKEY ? How to get XBY-APIKEY ?

访问小笨羊科技网站 https://xiaobenyang.com,注册用户即可获得APIKEY Visit XiaoBenYang website https://xiaobenyang.com, register and get the APIKEY.

SSE

{
  "mcpServers": {
    "分类记忆服务器": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "sse",
      "url": "https://mcp.xiaobenyang.com/1777316659460099/sse"
    }
  }
}

STREAMABLE HTTP

{
  "mcpServers": {
    "分类记忆服务器": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "streamable_http",
      "url": "https://mcp.xiaobenyang.com/1777316659460099/mcp"
    }
  }
}

STDIO

{
    "mcpServers": {
        "分类记忆服务器": {
          "command": "npx",
          "args": [
            "-y",
            "xiaobenyang-mcp"
          ],
          "env": {
            "XBY_APIKEY": "<YOUR_XBY_APIKEY>",
            "mcpId": "1777316659460099",
          },
          "transport": "stdio"
        }
      }
}

Available Tools

4 tools
remember_memoryremember_memoryC

Stores a memory with optional tags in a specified category

ParametersJSON Schema
NameRequiredDescriptionDefault
categoryYes
dataYes
tagsNo
is_globalYes

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool 'Stores a memory' which implies a write operation, but doesn't specify whether this is idempotent, what permissions are required, how conflicts are handled, or what happens on success/failure. For a mutation tool with zero annotation coverage, this leaves significant behavioral gaps.

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, efficient sentence that states the core functionality without unnecessary words. It's appropriately sized for a tool with 4 parameters and gets straight to the point. Every word earns its place.

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?

For a mutation tool with 4 parameters, 0% schema description coverage, no annotations, and no output schema, the description is inadequate. It doesn't explain what constitutes a 'memory', how the storage works, what the tool returns, or any error conditions. The agent would struggle to use this tool correctly without additional context.

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

Parameters2/5

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

Schema description coverage is 0%, so all 4 parameters are undocumented in the schema. The description mentions 'optional tags' and 'specified category' which partially covers 2 parameters, but doesn't explain 'data' or 'is_global' at all. The description adds some value but doesn't adequately compensate for the complete lack of schema documentation.

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 ('Stores') and resource ('a memory'), and specifies additional attributes ('with optional tags in a specified category'). It distinguishes from siblings like 'retrieve_memories' by focusing on storage rather than retrieval. However, it doesn't explicitly differentiate from 'remove_memory_category' or 'remove_specific_memory' beyond the verb choice.

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 like 'retrieve_memories' or the removal tools. There's no mention of prerequisites, constraints, or typical use cases. The agent must infer usage from the tool name and description alone.

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

remove_memory_categoryremove_memory_categoryC

Removes all memories within a specified category

ParametersJSON Schema
NameRequiredDescriptionDefault
categoryYes
is_globalYes

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool removes memories, implying a destructive operation, but doesn't specify if this is permanent, requires specific permissions, or has side effects (e.g., affecting other data). This leaves significant gaps in understanding the tool's behavior.

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, direct sentence with no wasted words, clearly front-loading the core action. It's appropriately sized for the tool's apparent complexity, making it easy to parse quickly.

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?

Given the lack of annotations, 0% schema coverage, and no output schema, the description is incomplete. It doesn't address key aspects like what 'removes' entails (e.g., deletion vs archiving), the meaning of 'is_global', or potential errors, leaving the agent under-informed for a destructive operation.

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

Parameters2/5

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

The schema description coverage is 0%, meaning parameters 'category' and 'is_global' are undocumented in the schema. The description mentions 'category' but doesn't explain its format or scope, and it completely omits 'is_global', failing to compensate for the lack of schema documentation.

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 ('removes') and target ('all memories within a specified category'), which is specific and actionable. However, it doesn't explicitly differentiate from sibling tools like 'remove_specific_memory' (which presumably removes individual memories rather than entire categories), so it misses the highest score.

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 like 'remove_specific_memory' or 'retrieve_memories'. It lacks context about prerequisites, such as whether the category must exist or if this is irreversible, leaving the agent with minimal usage direction.

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

remove_specific_memoryremove_specific_memoryC

Removes a specific memory within a specified category

ParametersJSON Schema
NameRequiredDescriptionDefault
categoryYes
memory_contentYes
is_globalYes

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It states the tool 'removes' (implying a destructive operation) but doesn't clarify if removal is permanent, reversible, requires specific permissions, or has side effects. The mention of 'specific memory within a specified category' adds some context about scope, but critical behavioral traits are missing.

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, efficient sentence that directly states the tool's purpose. There's no wasted language, and it's appropriately sized for a basic tool description.

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?

For a destructive operation with 3 undocumented parameters and no annotations or output schema, the description is inadequate. It doesn't explain what constitutes a 'memory', how categories work, what 'is_global' means, or what happens after removal. The agent would struggle to use this tool correctly without additional context.

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

Parameters2/5

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

Schema description coverage is 0%, so all 3 parameters are undocumented in the schema. The description only vaguely references 'category' and 'specific memory' (implied by 'memory_content'), leaving 'is_global' completely unexplained. It adds minimal meaning beyond the parameter names themselves.

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 verb 'removes' and the resource 'specific memory within a specified category', making the purpose understandable. It distinguishes from sibling 'remove_memory_category' by targeting individual memories rather than entire categories, but doesn't explicitly contrast with 'remember_memory' or 'retrieve_memories'.

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 provided about when to use this tool versus alternatives. The description doesn't mention when to choose this over 'remove_memory_category' (for deleting entire categories) or how it relates to 'remember_memory' (for adding memories) and 'retrieve_memories' (for viewing).

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

retrieve_memoriesretrieve_memoriesC

Retrieves all memories from a specified category

ParametersJSON Schema
NameRequiredDescriptionDefault
categoryYes
is_globalYes

TDQS

C2.8/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states a read operation ('Retrieves'), implying safety, but lacks details on permissions, rate limits, return format, or side effects. This is a significant gap for a tool with zero annotation coverage.

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, efficient sentence with zero waste. It is appropriately sized and front-loaded, directly stating the tool's core function without unnecessary elaboration.

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?

Given the complexity (2 parameters, no annotations, no output schema), the description is incomplete. It lacks details on behavioral traits, parameter semantics, and return values, making it inadequate for the agent to fully understand tool usage and outcomes.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must compensate for undocumented parameters. It only mentions 'category', leaving 'is_global' unexplained. This adds minimal value beyond the schema, failing to adequately clarify parameter meanings or usage.

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 verb ('Retrieves') and resource ('memories') with a specific scope ('from a specified category'), making the purpose understandable. However, it doesn't explicitly differentiate from sibling tools like 'remember_memory' or 'remove_specific_memory', which prevents a perfect score.

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 like 'remember_memory' or 'remove_specific_memory'. It mentions a 'specified category' but doesn't explain prerequisites, exclusions, or contextual usage scenarios, leaving the agent with minimal direction.

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.

  1. 4 tool updatesv1.0.0
    • First observedremember_memory
    • First observedremove_memory_category
    • First observedremove_specific_memory
    • First observedretrieve_memories

TDQS

A3.5/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: remember_memory stores, remove_memory_category deletes a whole category, remove_specific_memory deletes a single memory, and retrieve_memories fetches. No overlap exists, making selection unambiguous.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with snake_case, using clear verbs like remember, remove, and retrieve. The naming is predictable and uniform throughout the set.

Tool Count5/5

With 4 tools, this server is well-scoped for memory management, covering core operations (store, retrieve, delete specific, delete category) without bloat or missing essentials. Each tool earns its place.

Completeness5/5

The tool surface provides complete CRUD-like coverage for the memory domain: create (remember_memory), read (retrieve_memories), delete (remove_specific_memory and remove_memory_category). No obvious gaps exist for basic memory operations.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides a tiered, persistent memory architecture for Claude to automatically capture and retrieve user preferences, facts, and conversation history across sessions. It supports semantic search and seamless integration with the Claude desktop application using the Model Context Protocol.
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    A personal memory system that provides AI assistants with long-term memory capabilities through semantic search and vector storage. It enables Claude Code to store, retrieve, and manage personal context and project preferences using flexible LLM backends.
    8
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    A long-term emotional memory system for Claude, enabling persistent, cross-conversation memory with emotional tagging using Russell's valence/arousal model and natural forgetting curves.
    156
    MIT