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

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

Annotations already convey idempotent, non-destructive write behavior. The description adds valuable context: key-value scoping by identifier, 24-hour retention for anonymous sessions vs persistent for authenticated users, and the lifecycle with recall/forget. This complements rather than contradicts the annotations.

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 compact and front-loaded, starting with the action and then providing targeted guidance. Each of the five sentences adds distinct information: purpose, when to use, storage model, retention behavior, and companion tools. No filler or redundancy.

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 2-parameter write tool with no output schema, the description is complete. It covers invocation context, persistence semantics, authentication implications, and related tools, leaving minimal ambiguity for the agent. The retention nuance is especially helpful.

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 covers 100% of parameters with descriptive examples for key (e.g., 'subject_property') and value (any text). The description reinforces the key-value nature but does not add additional syntax or formatting details beyond what the schema already provides, so the baseline of 3 is appropriate.

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 opens with a specific verb 'Save data' and identifies the resource as a key-value pair for later reuse across conversation or sessions. It distinguishes itself from siblings by explicitly naming recall and forget as the complementary tools, making its purpose unique among the memory-related tools.

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?

It provides clear 'Use when' triggers (resolved ticker, target address, user preference, research subject) and explains the persistence difference between authenticated and anonymous sessions. It mentions pairing with recall and forget, but it does not explicitly state when not to use this tool, so it lacks a full exclusion clause.

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
Disambiguation2/5

The set contains several clusters of overlapping tools: ask_pipeworx, ask_pipeworx_beta, ask_pipeworx_grounded, and deep_research all serve broad data-query purposes, while the six Polymarket-related tools (bet_research, polymarket_arbitrage, polymarket_edges, polymarket_edge_tracker, polymarket_fill_risk, polymarket_kalshi_spread) heavily overlap in scope. The detailed descriptions help, but an agent would frequently struggle to choose the correct tool among near-synonyms.

Naming Consistency3/5

All names use snake_case, but the underlying pattern is inconsistent: list_*/get_* for Statbel, ask_* for query routers, noun-heavy names like entity_profile, bet_research, polymarket_edges, and recent_alerts, plus bare verbs like remember, recall, forget, subscribe, unsubscribe. It remains readable, but there is no single predictable verb_noun convention across the set.

Tool Count2/5

At 35 tools, the set exceeds the range where each tool clearly earns its place, and the scope is wildly broad: Belgian statistics, general data lookup, prediction markets, npm dependency checks, memory, subscriptions, llms.txt generation, and AI visibility. A server named 'Statbel Be' carries 31 tools unrelated to that name, which makes the count feel bloated and unfocused.

Completeness2/5

For the Statbel domain implied by the server name, the surface is severely incomplete: list_datasets, get_dataset, list_views, and get_view only return metadata — there is no tool to actually fetch the statistical data values. For the broader Pipeworx data-access domain, coverage is more complete, but the server's stated purpose is under-served and leaves core workflows at a dead end.