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

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

Descriptions adds significant behavioral context beyond annotations: storage is 'scoped by your identifier', authenticated users get persistent memory, anonymous sessions retain for 24 hours. This exceeds the safety flags and gives the agent critical persistence semantics.

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, each earning its place: opening purpose, when to use, storage model, persistence details, and sibling pairing. Front-loaded with the verb and resource, no fluff or 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?

For a simple two-parameter tool with no output schema, the description fully covers purpose, usage, storage behavior, and related tools. No gaps remain for the agent to safely invoke this 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?

Input schema already covers 100% of parameters with descriptions and examples. The description reinforces these with additional use-case examples but does not add new semantic meaning beyond the schema. Baseline of 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 the action: 'Save data the agent will need to reuse later' and identifies the resource as key-value memory scoped by identifier. It also distinguishes from siblings by explicitly pairing with 'recall to retrieve' and 'forget to delete', making the tool's role 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?

Provides explicit when-to-use context with concrete examples ('a resolved ticker, a target address, a user preference') and explains the benefit ('so you don't have to look it up again'). It names alternatives (recall, forget) but lacks explicit when-not-to-use exclusions, preventing a 5.

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.8/5.0
Disambiguation2/5

Many tools overlap in purpose: ask_pipeworx, ask_pipeworx_grounded, and deep_research all answer questions; multiple prediction market tools (polymarket_edges, polymarket_arbitrage, polymarket_edge_tracker, polymarket_fill_risk) have subtle distinctions. An agent would struggle to choose correctly among these.

Naming Consistency4/5

Tool names follow a consistent snake_case verb_noun pattern (e.g., list_subscriptions, generate_llms_txt). A few are noun phrases (stable_phases) but the style is uniform and predictable.

Tool Count2/5

33 tools is high for a single server, especially given the mix of two unrelated domains (materials database and general data querying). Many prediction market tools could be consolidated, and the broad scope suggests over-engineering.

Completeness3/5

The materials data side covers search and retrieval adequately. The query side offers many capabilities but has redundant paths (e.g., multiple ways to ask questions) and gaps in editing or updating data. Overall coverage is mixed.