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_addBInspect

保存一条持久记忆(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)
Behavior4/5

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

The description discloses several important behaviors: cost per usage, automatic vector computation, deduplication with timestamp refresh, per-user limit of 2000, and auto-refund on failure. However, it does not specify what the tool returns on success (e.g., a memory ID or confirmation), which is a gap given the absence of annotations or output schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise at around 100 words, with effective use of newlines and bullet-style formatting. Key points are front-loaded (cost, cross-session retrieval, vector computation). It could be slightly more structured (e.g., using actual bullet points) but remains efficient.

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?

The description covers input limits (4000 chars, 2000 memories), dedup, vector computation, cost, and refund. However, it omits what the tool returns after a successful operation. Given no output schema, this is a notable gap for an agent to interpret the result.

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 coverage is 100%, with each parameter having clear descriptions (e.g., content length, tag format, project namespace, TTL range, importance scale). The tool description adds no additional semantics beyond the schema, so a baseline score of 3 is appropriate.

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 tool saves persistent memory across sessions and clients, with cost and dedup details. However, it does not explicitly differentiate from the sibling tools like memory_update or memory_search, leaving ambiguity about when to add versus update.

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 does not provide guidance on when to use memory_add versus its siblings (memory_delete, memory_list, memory_search, memory_update). While it mentions memory_search in passing, there is no explicit statement of appropriate contexts or exclusions.

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 exist, so the description carries full burden. It discloses that the operation is free (0 credit), batch, and returns a detail list. This adds behavioral context beyond the implicit destructive nature.

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 extremely concise with two sentences, front-loading the main action and adding essential constraints and details with zero wasted text.

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

Completeness5/5

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

Given the tool has only one parameter, no output schema, and four siblings, the description covers the purpose, scope, cost, and return format adequately without missing critical aspects.

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 coverage is 100% and the parameter 'memory_ids' has a clear description in the schema. The tool description does not add any additional semantic information beyond what the schema already provides.

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 'batch delete memories' and specifies 'only delete your own', which is a specific verb and resource. It distinguishes from siblings like memory_add and memory_list.

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 includes a clear usage constraint ('only delete your own'), but does not explicitly mention when to use alternatives or exclusions. However, it provides context about batch size and return details.

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

memory_listAInspect

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

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

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

描述了费用为0这一行为特性,但在缺少注释的情况下未明确说明只读性质。对列出操作而言,行为透明性足够但可改进。

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?

一句话清晰概括用途、排序、分页和费用,无冗余信息。

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?

对于简单列表工具,描述覆盖了核心功能,但未说明返回格式或排序方向。总体完整。

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?

模式覆盖度100%,描述未为参数添加新语义,仅涉及分页和总数,与模式已有信息一致。

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?

描述明确了动词'列出'、资源'记忆'、排序方式'按最近更新'、分页和返回总数,与兄弟工具(memory_add等)明显区分。

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

Usage Guidelines3/5

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

未明确给出何时使用或何时不使用,但根据兄弟工具名称(memory_search等)可推断用途。缺乏明确的替代方案说明。

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?

No annotations are present, so the description must cover behavioral traits. It mentions that changing content triggers automatic recalculation of semantic vectors and is free. It also implies other fields remain unchanged ('缺省不改'). However, it does not discuss permissions, rate limits, or error cases.

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?

A single sentence packs all essential information: fields, requirement, side effect, and cost. No wasted words.

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 5 parameters, 1 required, and no output schema, the description explains inputs and behavior adequately. It lacks details on return value and error handling, but covers the core update logic.

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%, baseline 3. The description adds value by explicitly requiring at least one updating field, explaining tags are comma-separated and replaced entirely, and noting content change triggers recalc. This goes beyond 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 tool updates a memory and lists the updatable fields (content/tags/importance/ttl_days). It distinguishes from siblings which create, delete, list, or search memories.

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 specifies the prerequisite of providing at least one of the fields, and indicates it's free. It does not explicitly state when not to use or alternatives, but sibling tool names provide context.

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!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources