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.6/5.0
Behavior4/5

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

Annotations already declare idempotentHint=true and destructiveHint=false. Description adds value by explaining scoping by identifier and retention policies (24 hours for anonymous). Does not contradict annotations.

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?

Description is a single, well-structured paragraph with the main action in the first sentence. It efficiently covers purpose, usage, and behavioral details without redundancy. Slightly verbose but earns its sentences.

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 only two required parameters and no output schema, the description comprehensively covers purpose, usage triggers, key-value semantics, persistence details, and pairing with sibling tools. Nothing essential is missing.

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 naming examples for keys ('subject_property', 'target_ticker') and clarifies value as 'any text — findings, addresses, preferences, notes', going beyond the schema's generic 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 identifies the tool's purpose: 'Save data the agent will need to reuse later' with specific examples like 'a resolved ticker, a target address'. It distinguishes from siblings by mentioning 'Pair with recall to retrieve later, forget to delete'.

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: 'Pair with recall to retrieve later, forget to delete'. Also clarifies scope and persistence differences between authenticated and 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

A4/5.0
Disambiguation4/5

Most tools have distinct purposes; however, 'ask_pipeworx' and 'ask_pipeworx_grounded' are very similar, and 'polymarket_edges' vs 'polymarket_edge_tracker' could cause confusion. The real estate tools (altos_active_listings, altos_new_listings, altos_pending_sales) are clearly differentiated by status.

Naming Consistency4/5

Tool names use snake_case and are descriptive, but prefixes vary (altos_, polymarket_, ask_pipeworx, etc.) and patterns like 'entity_profile' or 'generate_llms_txt' don't follow strict verb_noun. Overall, naming is fairly consistent and readable.

Tool Count3/5

36 tools is high but justifiable given the broad scope (real estate, prediction markets, SEC/FDA data, etc.). Some utility tools (list_subscriptions, pipeworx_feedback) could be integrated, but the count is borderline heavy for a single server.

Completeness4/5

The server covers multiple domains thoroughly with tools for real estate, company profiles, prediction markets, and general data queries. Minor gaps exist (e.g., no dedicated tool for FDA drug details beyond ask_pipeworx), but meta-tools like deep_research fill many needs.