Skip to main content
Glama

stagenth · AI 记忆库

Server Details

Hosted persistent memory with semantic search, importance and TTL for AI agents.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.1/5 across 5 of 5 tools scored. Lowest: 3.4/5.

Server CoherenceA
Disambiguation5/5

Each tool performs a distinct operation (add, delete, list, search, update) on memory objects. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tools follow the exact `memory_<action>` pattern with imperative verbs (add, delete, list, search, update), providing a clear and predictable naming convention.

Tool Count5/5

Five tools is ideal for a focused memory server, covering all essential CRUD operations plus semantic search without unnecessary bloat or missing basics.

Completeness5/5

The tool set covers the full lifecycle: create (add), read (list/search), update, and delete. Semantic search enhances retrieval, making the surface complete for persistent memory management.

Available Tools

5 tools
memory_addAInspect

保存一条持久记忆(1 credit/次)。跨会话、跨客户端(Claude Code/Cline/Cursor)都能取回。

    自动计算语义向量供 memory_search 语义检索;同内容自动去重(只刷新时间不重复扣存储条数);
    每用户上限 2000 条。失败自动退款。
    
ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNo可选标签,逗号分隔(如 项目A,偏好);便于检索归类
contentYes要记住的内容(纯文本,最长 4000 字符)。写成独立可复用的事实/偏好/结论
projectNo可选项目命名空间(≤64 字符):按项目隔离记忆;不传=全局记忆
ttl_daysNo保留天数,0=永久;到期自动清理(临时上下文适用)
importanceNo重要度 0-5(检索排序加权,默认 0)
Behavior5/5

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

With no annotations, the description fully discloses behaviors: automatic semantic vector computation, dedup with timestamp refresh, per-user limit of 2000, credit cost, and auto refund on failure.

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 concise, with bullet points for key features. It front-loads the core purpose and cost, and every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 5 parameters and no output schema, the description covers purpose, behavior, and constraints well. It could mention return value, but the absence is acceptable for an add tool.

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

Parameters3/5

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

Schema description coverage is 100%, so the baseline is 3. The tool description does not add extra parameter-level meaning beyond what is already in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('保存一条持久记忆') and specifies it works across sessions and clients. It distinguishes from siblings by detailing unique features like dedup and semantic vectors.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explains when to use (to save persistent memory) and covers costs, limits, and failure behavior. However, it does not explicitly state when not to use or compare to siblings, though context from the name makes it clear.

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

memory_deleteAInspect

批量删除记忆(只能删自己的;返回 deleted/not_found 明细)。免费(0 credit)。

ParametersJSON Schema
NameRequiredDescriptionDefault
memory_idsYes要删除的记忆 ID 列表(单次最多 100 个)
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It discloses that the operation is destructive (delete), returns detailed results (deleted/not_found), and costs 0 credits. It could clarify whether deletion is permanent, but the information is adequate.

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, concise sentence that front-loads the purpose and includes key constraints and return details. No extraneous text.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple batch delete tool, the description covers purpose, ownership constraint, return details, and cost. The batch limit is in the schema. Without an output schema, the description provides enough context. It could explicitly mention the return structure, but it's acceptable.

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

Parameters3/5

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

The only parameter (memory_ids) is fully described in the schema ('要删除的记忆 ID 列表(单次最多 100 个)'). The description adds no further semantic meaning beyond the schema, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool batch-deletes memories, emphasizes it can only delete the user's own memories, and distinguishes from sibling tools like memory_add, memory_list, memory_search, and memory_update.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It specifies that the tool only works for the user's own memories ('只能删自己的'), providing a clear usage boundary. However, it does not explicitly mention when to use alternatives like memory_update or memory_list.

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

memory_listBInspect

按最近更新列出记忆(分页,返回 total 总数)。免费(0 credit)。

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo最多返回条数,默认 20
offsetNo分页偏移
projectNo可选项目命名空间:只列该项目的记忆;不传=列全部
Behavior2/5

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

No annotations provided, so description carries full burden. It discloses pagination, total count, and free cost, but lacks details on side effects, authentication, or rate limits.

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?

Description is two short sentences with no wasted words. Key information about listing, pagination, and cost is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

No output schema; description mentions total count and pagination but does not describe the structure of returned memory objects, leaving gaps for agent understanding.

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

Parameters3/5

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

Schema description coverage is 100% for all 3 parameters. Description adds no extra parameter information beyond schema, so baseline 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the verb 'list', resource 'memories', sorting by recent update, and pagination. It distinguishes from siblings like memory_search, memory_add, etc.

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?

Description mentions free cost but does not provide explicit guidance on when to use this tool versus alternatives like memory_search or memory_list.

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

memory_updateAInspect

更新一条记忆(content/tags/importance/ttl_days 至少给一个;改 content 自动重算语义向量)。免费(0 credit)。

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNo新标签(逗号分隔,整体替换);缺省不改
contentNo新内容;缺省不改
ttl_daysNo重设保留天数(从现在起算),0=改为永久;缺省不改
memory_idYes要更新的记忆 ID(memory_search/list 返回的 id)
importanceNo新重要度 0-5;缺省不改
Behavior4/5

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

Without annotations, the description carries full burden. It discloses that changing content triggers semantic vector recalculation and that the operation is free (0 credits). No additional behavioral traits (e.g., side effects, auth) are mentioned, but for a simple update this is adequate.

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?

Two sentences, front-loaded with essential information. Every word adds value; no redundancy or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description does not explain return values, but for a mutation tool this is often acceptable. It covers input requirements and side effects comprehensively given the low complexity.

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

Parameters4/5

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

Schema coverage is 100%, so baseline is 3. The description adds value by noting the 'at least one' constraint and the automatic vector recalculation on content change, which goes beyond individual parameter descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it updates a memory and lists the updatable fields (content/tags/importance/ttl_days), distinguishing it from siblings like memory_add (create) and memory_delete (delete). The verb 'update' is specific to modification.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly requires at least one of four fields to be provided, which guides usage. It does not explicitly compare to alternatives, but the context of update vs. other operations is clear given sibling names.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    D
    maintenance
    Provides persistent memory storage for AI agents with full-text search, tagging, and importance levels, enabling agents to store and retrieve memories efficiently.
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Provides durable memory for AI agents with structured storage, semantic search, OAuth authentication, and lifecycle controls.
    11
    Apache 2.0

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources