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. First observed

TDQS

A4.9/5.0
Behavior5/5

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

Adds context beyond annotations: key-value storage, scoping by agent identifier, and retention details (persistent for authenticated, 24h for anonymous). No contradiction with annotations (idempotentHint=true, destructiveHint=false).

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?

Five sentences with clear front-loading of purpose. Each sentence adds essential information without redundancy. Efficient and well-structured.

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?

The description covers all necessary aspects: behavior, scoping, retention, and pairing with related tools. No output schema needed for a store operation.

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%, so baseline is 3. Description adds useful examples for key (e.g., 'subject_property') and clarifies value as 'any text', which adds meaning beyond the schema types.

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 saves data for reuse later, with specific verb 'Save data' and resource 'key-value pair'. It distinguishes from siblings like recall and forget by mentioning retrieval and deletion.

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?

Explicitly states when to use ('when you discover something worth carrying forward') and provides alternatives (recall, forget). Also mentions scoping and persistence differences for authenticated vs anonymous sessions.

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

A3.7/5.0
Disambiguation3/5

Many tools have overlapping purposes, especially the Pipeworx query tools (ask_pipeworx, ask_pipeworx_grounded, deep_research) which all serve similar data retrieval needs. Additionally, entity_profile, compare_entities, and recent_changes overlap in providing company information. Polymarket tools also have overlapping analysis functions. This can cause confusion for agents.

Naming Consistency2/5

Tool names are inconsistent in style and convention. Some use underscores (ai_visibility_check, ask_pipeworx), others are single words (forget, recall), and many lack a clear verb_noun pattern (pipeworx_feedback, polymarket_edges). This mixture of naming conventions reduces predictability.

Tool Count3/5

With 32 tools, the count is on the higher side but appropriate given the broad scope covering multiple domains (Pipeworx data, Polymarket betting, ACLED events, npm scanning, memory, etc.). However, some areas have only one or two tools, which feels sparse, and the overall set could be trimmed or better organized.

Completeness3/5

The tool set covers many domains but has notable gaps. For ACLED, only search and count tools exist without any update/delete capabilities. For Pipeworx, the tools are heavily read-focused with no apparent write operations. The broad scope makes completeness hard to assess, but some obvious lifecycle operations are missing.