Skip to main content
Glama

Remember

remember
Idempotent

Save data the agent will need to reuse later — across this conversation or across sessions. Use when you discover something worth carrying forward (a resolved ticker, a target address, a user preference, a research subject) so you don't have to look it up again. Stored as a key-value pair scoped by your identifier. Authenticated users get persistent memory; anonymous sessions retain memory for 24 hours. Pair with recall to retrieve later, forget to delete.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyYesMemory key (e.g., "subject_property", "target_ticker", "user_preference")
valueYesValue to store (any text — findings, addresses, preferences, notes)

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Added

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already indicate idempotent and non-destructive behavior. The description adds valuable context about persistence (authenticated vs 24-hour anonymous sessions) and scoping by identifier, which goes beyond the annotations and helps the agent understand data retention and isolation.

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 three sentences that front-load the purpose, then cover usage and related tools. Every sentence contributes meaning with no redundancy or unnecessary detail.

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 2-parameter memory tool with annotations and no output schema, the description covers purpose, usage, persistence, and sibling integration. It doesn't explicitly describe overwrite behavior or return values, but those are minor gaps given the idempotent annotation and simple nature of the 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 coverage is 100% for both parameters, so the schema fully documents key/value semantics. The description's examples (resolved ticker, target address, user preference) add practical usage context, but the core parameter meaning is already well-covered by the schema, meriting the baseline score.

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 function as saving data for later reuse, using a specific verb and resource ('Save data'). It distinguishes itself from siblings by explicitly pairing with 'recall' and 'forget', making its role in the memory workflow unambiguous.

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?

It provides explicit usage context ('Use when you discover something worth carrying forward...') and names alternatives ('Pair with recall to retrieve later, forget to delete'). This gives the agent clear when-to-use guidance and differentiates from related tools.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation4/5

Tools have mostly clear distinctions: ask_pipeworx variants differ by grounding/evidence guarantees, and meta-tools (discover_tools, suggest_questions) serve onboarding. However, ask_pipeworx_beta currently matches ask_pipeworx exactly, creating transient ambiguity, and deep_research vs ask_pipeworx overlap in routing capability though with different scopes.

Naming Consistency4/5

All tools use snake_case and most follow verb-first naming (ask_pipeworx, compare_entities, generate_avatar, subscribe). A few are descriptive nouns (recent_alerts, recent_changes, pipeworx_trending) but still readable and predictable. No mixed conventions; overall consistent style.

Tool Count2/5

33 tools is excessive for a single server, and many are auxiliary (avatar generation, memory, feedback) that do not serve the core data-access purpose. The primary question-answering capability is centralized in a few routers, making many separate tools feel redundant or unrelated, which dilutes navigability.

Completeness4/5

The core domain of structured data access is well covered with routing, grounded answering, deep research, entity profiles, comparisons, and claim validation. Subscription lifecycle (subscribe/unsubscribe/alerts) and memory (remember/recall/forget) round out the surface. Minor gaps like lack of direct tool invocation outside the router are covered by discover_tools, and no critical dead ends exist for typical queries.