Gnosem
Server Details
Cross-vendor AI memory over MCP. One semantic store, readable and writeable from every MCP client.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- gnosem/gnosem
- GitHub Stars
- 0
- Server Listing
- gnosem
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.4/5 across 6 of 6 tools scored.
Each tool has a clearly distinct purpose: write (single/bulk), search, list, forget, supersede. No overlap or ambiguity.
All tools follow a consistent 'memory_' prefix and verb pattern, using snake_case throughout. Naming is predictable and clear.
6 tools is well-scoped for a memory management server, covering essential operations without being excessive or insufficient.
Covers write (single/bulk), search, list, soft-delete, and supersede. Minor gap: no direct single-item retrieval by ID, but search can serve that purpose.
Available Tools
6 toolsmemory_forgetAInspect
Soft-delete a memory by id. The row is retained for audit but excluded from search/list and removed from the vector index.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | UUID of the memory to forget. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It explains the soft-delete behavior and its effects on search/list and vector index. Lacks details on permissions or reversibility, but sufficient for a simple 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?
Two sentences, front-loaded with the action, and concise explanation of side effects. No wasted words.
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 single-parameter tool with no output schema, the description covers the operation and its implications fully. No gaps identified.
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% (only 'id' parameter described as UUID). The description does not add additional meaning beyond what the schema already provides, so baseline 3 applies.
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 'soft-delete a memory by id' and explains the implications (retained for audit, excluded from search/list, removed from vector index). This distinguishes it from siblings like memory_write or memory_list.
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 implies usage for forgetting a memory but does not explicitly state when to use this tool versus alternatives (e.g., when not to use, prerequisites, or that it's reversible). No guidance on context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
memory_listAInspect
List the user's most recent memories in reverse chronological order. Use for browsing or catching up on what the user's other model sessions have written recently. Same content/content_raw shape as memory_search. Optional filters (tags, written_by, session_id, since, until) narrow the listing at the SQL level.
| Name | Required | Description | Default |
|---|---|---|---|
| raw | No | Return original prose instead of the compressed form. Default false. | |
| tags | No | Only return memories containing ALL of these tags (AND semantics). | |
| limit | No | Max rows to return (1–200). Default 50. | |
| since | No | Only return memories created at or after this ms-epoch timestamp. | |
| until | No | Only return memories created strictly before this ms-epoch timestamp. | |
| cursor | No | Pagination cursor from a previous call's `cursor` field (ms epoch); returns rows older than this timestamp. | |
| session_id | No | Only return memories with an exact session_id match. | |
| written_by | No | Only return memories with an exact written_by match. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description carries the burden. It discloses the read-only nature implicitly by describing 'listing', but does not mention side effects, rate limits, or authorization needs. It does explain the SQL-level filtering and the shape similarity to memory_search.
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 concise sentences that front-load the purpose and provide necessary detail without redundancy. Every sentence serves a purpose.
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 no output schema and 8 optional parameters, the description adequately covers the listing behavior, filter semantics, and references a sibling for shape. Missing details like default 'recent' window are minor.
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 schema already documents all 8 parameters. The description adds only a general note that filters narrow at the SQL level, which adds minimal extra meaning beyond 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 verb 'list', the resource 'memories', and key behavior 'in reverse chronological order'. It distinguishes from siblings like memory_search and memory_write by specifying the listing orientation.
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 indicates use for 'browsing or catching up', which guides the agent on when to invoke. It mentions optional filters for narrowing, but does not explicitly state when to use alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
memory_searchAInspect
Search the user's memories. Default mode is 'hybrid': blends semantic (cosine over Vectorize) and keyword (BM25 over SQLite FTS5) hits via Reciprocal Rank Fusion (k=60). Semantic catches paraphrases; keyword catches exact-string hits (IDs, dates, code snippets). Pass mode:'semantic' or mode:'keyword' to run just one. Content defaults to the LLM-optimized (compressed) form when available (raw:true to invert). Excludes forgotten + superseded. Optional filters narrow after retrieval: tags (AND), written_by, session_id, and/or since/until (ms epoch).
| Name | Required | Description | Default |
|---|---|---|---|
| k | No | Max results (1–50). Default 10. | |
| raw | No | Return original prose instead of the compressed form. Default false. | |
| mode | No | Retrieval mode. Default 'hybrid'. | |
| tags | No | Only return memories containing ALL of these tags (AND semantics). | |
| query | Yes | Search query. Interpreted as natural language for semantic mode and as FTS5-safe text for keyword mode. | |
| since | No | Only return memories created at or after this ms-epoch timestamp. | |
| until | No | Only return memories created strictly before this ms-epoch timestamp. | |
| session_id | No | Only return memories with an exact session_id match. | |
| written_by | No | Only return memories with an exact written_by match (e.g. 'claude-code'). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully bears the burden. It discloses the hybrid RRF algorithm, exclusion of forgotten/superseded memories, default compression, and filter behavior. This is comprehensive.
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 dense paragraph that front-loads the key mode information. It is efficient but slightly packed; breaking into bullet points could improve readability without adding length.
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 9 parameters, no output schema, and no annotations, the description covers retrieval behavior, modes, filters, and exclusions thoroughly. It could hint at return format (e.g., list of memory objects) but overall is sufficient.
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%, and the description adds valuable context for many params (e.g., query interpretation per mode, tags AND semantics, filter timing). Some params like k have only default info, but overall enhancement is good.
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 that the tool searches memories, details the default hybrid mode, and contrasts with sibling tools like memory_write and memory_list by focusing on retrieval.
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 hybrid vs semantic vs keyword modes, and mentions optional filters. However, it does not explicitly state when not to use this tool or direct users to alternatives like memory_list for listing all memories.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
memory_supersedeAInspect
Replace a stale memory with a corrected one. The old row is marked superseded and excluded from future reads; the new row becomes the current version. Use for corrections; use memory_forget for pure deletions.
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | ||
| old_id | Yes | UUID of the memory to replace. | |
| session_id | No | ||
| written_by | No | ||
| new_content | Yes | New content that supersedes the old memory. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Despite no annotations, the description explains the core behavior: old row is marked superseded and excluded from future reads, new row becomes current. It lacks details on permissions or reversibility, but for a simple operation this is sufficient.
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 that efficiently convey purpose, behavior, and usage guidance without any unnecessary words.
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 the absence of output schema and annotations, the description adequately covers purpose, usage, and behavior. It could be improved by documenting optional parameters, but essentials are handled.
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 description clarifies the two required parameters ('old_id' as UUID to replace, 'new_content' as new content). However, schema coverage is only 40% (optional params like tags, session_id, written_by lack schema descriptions and are not mentioned in the description).
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's action ('Replace a stale memory with a corrected one') and specifies the resource (memory). It also distinguishes itself from the sibling tool memory_forget, which is used for pure deletions.
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 says 'Use for corrections; use memory_forget for pure deletions,' providing clear guidance on when to use this tool versus an alternative.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
memory_writeAInspect
Save a fact, preference, decision, or note to the user's cross-model memory. Any MCP client can read this back later. Include written_by (e.g. 'claude-code', 'gpt-5', 'kimi-k2') for provenance and session_id to group related writes. Long content (>400 chars) is automatically compressed on write to a structured-facts form optimized for LLM reading — the raw text is preserved. Pass no_optimize:true to skip. Writes are deduped by default: (1) SHA-256 of trim(content) short-circuits byte-identical writes with { id, exact_duplicate:true } for free (no embed call); (2) failing that, semantic dedup returns { id, deduped:true, matched_score } when cosine ≥ 0.85. Pass force:true to bypass both, or use memory_supersede to explicitly correct a prior memory.
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Optional short labels for filtering (e.g. ['preference','stack']). | |
| force | No | Bypass semantic dedup and write anyway. Default false. | |
| content | Yes | The fact or note to remember. Plain text, max 8000 characters. | |
| session_id | No | Opaque identifier grouping related writes from the same conversation. | |
| written_by | No | Identifier of the model / client writing this (e.g. 'claude-code', 'gpt-5', 'kimi-k2', 'manual'). | |
| no_optimize | No | Skip AI compression of long content. Default false. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must disclose all behavioral aspects. It does so thoroughly: automatic compression for long content (>400 chars), two-stage dedup (byte-identical SHA-256 then semantic embedding), bypass options (force, no_optimize), and the exact response structure (id, exact_duplicate, deduped, matched_score). No contradictions.
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 slightly long but well-organized: purpose first, then usage details, then specific behaviors. Every sentence adds value, and it avoids fluff. Could be tightened slightly, but the density of information warrants the length.
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 tool with 6 parameters (1 required) and no output schema, the description covers all aspects: purpose, parameter behavior, dedup logic, compression, and return fields. It also addresses cross-model access (any MCP client can read). No missing context given the tool's 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%, but the description adds substantial meaning beyond field labels. It explains why written_by and session_id matter, how no_optimize bypasses compression, how force overrides dedup, and the dedup threshold (cosine ≥ 0.85). This transforms opaque parameters into actionable guidance.
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 starts with 'Save a fact, preference, decision, or note to the user's cross-model memory,' clearly defining the action (save) and target (memory). It distinguishes from siblings like memory_list or memory_search by focusing on writing rather than reading or querying. The verb 'save' is specific and appropriate.
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 provides excellent usage guidance: recommending written_by for provenance, session_id for grouping, explaining when to use force or no_optimize, and noting memory_supersede for corrections. However, it does not explicitly contrast with sibling tools like memory_list (when to read vs write), so it slightly misses perfect clarity on when to choose this tool over others.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
memory_write_bulkAInspect
Write up to 50 memories in a single call. Each entry runs the same path as memory_write (semantic dedup by default; pass force:true per-entry to skip). Embeddings + optimizations run in parallel; D1 inserts are batched. Returns { results: [...] } with one entry per input in the same order — each is { id, created_at, optimized? } on success, { id, created_at, deduped, matched_score } on dedup, or { error } on failure. Free-tier limits apply to the sum: if adding N would exceed 200, the first (200 - existing) succeed and the rest return an error.
| Name | Required | Description | Default |
|---|---|---|---|
| memories | Yes | Array of memory-write entries (1–50). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Despite no annotations, the description is highly transparent: it details parallel embeddings, batched D1 inserts, return format for success/dedup/error, and free-tier limit handling. No contradictions exist.
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 paragraph that efficiently conveys key information. While it could be broken into sections for readability, it is front-loaded with the core action and avoids unnecessary repetition.
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 the lack of an output schema, the description thoroughly explains the return format and handles edge cases (dedup, failure, free-tier limit). All important aspects are covered.
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 descriptions for each field. The description adds value by explaining dedup behavior, parallel execution, and return structure, going beyond the schema to provide operational context.
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 that this tool writes up to 50 memories in a single call, using the same path as memory_write. This distinguishes it from the sibling tool memory_write, making the purpose unambiguous.
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 that it runs the same path as memory_write, includes dedup behavior and force option, and discusses free-tier limits. However, it does not explicitly state when to choose this bulk version over the single memory_write, relying on the name and context to imply bulk scenarios.
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-qualityCmaintenanceProvides persistent semantic memory for AI agents via MCP, enabling them to remember, recall, list, update, and forget memories with vector-based similarity search.ISC
- Alicense-qualityCmaintenancePersistent semantic memory server for AI assistants via MCP, enabling long-term context retention and semantic search across conversations.11MIT
- Alicense-qualityCmaintenanceA permissioned memory tree for you and your AI — served over MCP.121MIT
- AlicenseAqualityDmaintenanceProvides persistent memory for AI assistants via MCP, enabling them to store and recall facts, preferences, and tasks across conversations using either local file storage or a cloud backend with semantic search.514MIT
Your Connectors
Sign in to create a connector for this server.