Skip to main content
Glama

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.

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.4/5 across 6 of 6 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: write (single/bulk), search, list, forget, supersede. No overlap or ambiguity.

Naming Consistency5/5

All tools follow a consistent 'memory_' prefix and verb pattern, using snake_case throughout. Naming is predictable and clear.

Tool Count5/5

6 tools is well-scoped for a memory management server, covering essential operations without being excessive or insufficient.

Completeness4/5

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 tools
memory_forgetAInspect

Soft-delete a memory by id. The row is retained for audit but excluded from search/list and removed from the vector index.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesUUID of the memory to forget.
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
rawNoReturn original prose instead of the compressed form. Default false.
tagsNoOnly return memories containing ALL of these tags (AND semantics).
limitNoMax rows to return (1–200). Default 50.
sinceNoOnly return memories created at or after this ms-epoch timestamp.
untilNoOnly return memories created strictly before this ms-epoch timestamp.
cursorNoPagination cursor from a previous call's `cursor` field (ms epoch); returns rows older than this timestamp.
session_idNoOnly return memories with an exact session_id match.
written_byNoOnly return memories with an exact written_by match.
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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_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.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNo
old_idYesUUID of the memory to replace.
session_idNo
written_byNo
new_contentYesNew content that supersedes the old memory.
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNoOptional short labels for filtering (e.g. ['preference','stack']).
forceNoBypass semantic dedup and write anyway. Default false.
contentYesThe fact or note to remember. Plain text, max 8000 characters.
session_idNoOpaque identifier grouping related writes from the same conversation.
written_byNoIdentifier of the model / client writing this (e.g. 'claude-code', 'gpt-5', 'kimi-k2', 'manual').
no_optimizeNoSkip AI compression of long content. Default false.
Behavior5/5

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.

Conciseness4/5

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.

Completeness5/5

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.

Parameters5/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
memoriesYesArray of memory-write entries (1–50).
Behavior5/5

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.

Conciseness4/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

Discussions

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

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.