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.
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.
Tool Definition Quality
Average 4.1/5 across 5 of 5 tools scored. Lowest: 3.4/5.
Each tool performs a distinct operation (add, delete, list, search, update) on memory objects. There is no overlap or ambiguity between them.
All tools follow the exact `memory_<action>` pattern with imperative verbs (add, delete, list, search, update), providing a clear and predictable naming convention.
Five tools is ideal for a focused memory server, covering all essential CRUD operations plus semantic search without unnecessary bloat or missing basics.
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 toolsmemory_addAInspect
保存一条持久记忆(1 credit/次)。跨会话、跨客户端(Claude Code/Cline/Cursor)都能取回。
自动计算语义向量供 memory_search 语义检索;同内容自动去重(只刷新时间不重复扣存储条数);
每用户上限 2000 条。失败自动退款。
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | 可选标签,逗号分隔(如 项目A,偏好);便于检索归类 | |
| content | Yes | 要记住的内容(纯文本,最长 4000 字符)。写成独立可复用的事实/偏好/结论 | |
| project | No | 可选项目命名空间(≤64 字符):按项目隔离记忆;不传=全局记忆 | |
| ttl_days | No | 保留天数,0=永久;到期自动清理(临时上下文适用) | |
| importance | No | 重要度 0-5(检索排序加权,默认 0) |
Tool Definition Quality
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.
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.
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.
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.
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.
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)。
| Name | Required | Description | Default |
|---|---|---|---|
| memory_ids | Yes | 要删除的记忆 ID 列表(单次最多 100 个) |
Tool Definition Quality
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.
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.
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.
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.
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.
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)。
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | 最多返回条数,默认 20 | |
| offset | No | 分页偏移 | |
| project | No | 可选项目命名空间:只列该项目的记忆;不传=列全部 |
Tool Definition Quality
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.
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.
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.
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.
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.
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_searchAInspect
语义检索记忆:按意思匹配(如「界面配色偏好」能找到「喜欢 dark mode」),免费(0 credit)。
余弦相似 + 关键词命中加权 + 重要度加权混合排序,返回 score;嵌入服务离线自动降级为关键词模式。 会话开始 / 回答涉及用户偏好、历史决策前先搜一把,把命中的记忆带进上下文。
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | auto=语义检索(嵌入离线自动降级关键词)/ semantic=强制语义 / keyword=纯关键词 | auto |
| limit | No | 最多返回条数,默认 10 | |
| query | Yes | 检索内容:自然语言描述(语义匹配)或关键词(空格分隔=AND) | |
| project | No | 可选项目命名空间:只搜该项目的记忆;不传=搜全部 |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, but the description discloses free cost, ranking algorithm (cosine + keyword + importance), return of score, and automatic degradation to keyword mode when offline. Missing details on permissions or rate limits, but sufficient for a read-only search tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences covering purpose, algorithm, and usage hints. Well front-loaded with the core purpose, but the second sentence is somewhat technical; still efficient overall.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema, but description mentions return of score and ranking. It does not explicitly list all return fields (e.g., id, text), but the usage context is clear. Adequate for an AI agent to understand the tool's behavior and purpose.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with detailed descriptions for all 4 parameters (mode, limit, query, project). The description adds no additional semantics beyond the schema, so baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states semantic retrieval of memories with an example ('interface color preference' finds 'likes dark mode'), and the tool name 'memory_search' plus the description differentiate from siblings like memory_add, memory_delete, memory_list, memory_update.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly advises 'use before session start or before answering about user preferences/historical decisions' and contrasts with other retrieval by mentioning memory_list for listing.
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)。
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | 新标签(逗号分隔,整体替换);缺省不改 | |
| content | No | 新内容;缺省不改 | |
| ttl_days | No | 重设保留天数(从现在起算),0=改为永久;缺省不改 | |
| memory_id | Yes | 要更新的记忆 ID(memory_search/list 返回的 id) | |
| importance | No | 新重要度 0-5;缺省不改 |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityDmaintenanceProvides persistent memory storage for AI agents with full-text search, tagging, and importance levels, enabling agents to store and retrieve memories efficiently.MIT
- AlicenseAqualityAmaintenanceProvides persistent, searchable memory for AI agents, enabling them to retain, recall, and reflect on information across conversations.191MIT
- Alicense-qualityCmaintenanceProvides durable memory for AI agents with structured storage, semantic search, OAuth authentication, and lifecycle controls.11Apache 2.0
- Alicense-qualityCmaintenancePersistent memory for AI agents. Store and semantically search memories via REST API or MCP. Free tier available.MIT