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

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

Annotations already indicate non-read-only, non-destructive, and idempotent behavior. The description adds valuable context beyond annotations: key-value scope by identifier, 24-hour retention for anonymous sessions, and persistent memory for authenticated users. It does not contradict annotations and provides extra details about data lifecycle, though it stops short of explaining overwrite behavior or failure modes.

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, front-loaded with the main action and purpose, followed by usage context and pairing information. Every sentence contributes unique value with no redundancy or filler.

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 two-parameter tool with no output schema, the description covers purpose, usage scenarios, persistence, and companion tools. It is complete enough for an agent to select and invoke correctly, though it leaves minor edge-case behaviors (like overwriting existing keys) unspecified, which is acceptable given the annotations and schema richness.

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%, with both 'key' and 'value' having descriptive examples. The description reinforces the parameter roles by illustrating typical keys and values, but does not add substantial new meaning beyond the schema. Thus a baseline score 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 clearly states the tool's function with a specific verb ('Save') and resource ('data the agent will need to reuse later'), and it distinguishes from sibling tools by naming the paired operations (recall, forget). Concrete examples of use cases (resolved ticker, target address, user preference) further ground the purpose.

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?

The description provides explicit when-to-use guidance ('Use when you discover something worth carrying forward') and differentiates contexts (authenticated vs. anonymous sessions, cross-conversation vs. cross-sessions). It alludes to alternatives by mentioning 'Pair with recall to retrieve later, forget to delete,' but does not explicitly state when not to use the tool.

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

Several tool clusters have blurry boundaries: ask_pipeworx, ask_pipeworx_beta, ask_pipeworx_grounded, deep_research, and validate_claim all answer factual questions from the same 5,708-tool backend. Polymarket tools (polymarket_edges, polymarket_arbitrage, polymarket_fill_risk, polymarket_kalshi_spread, bet_research) and entity-research tools (entity_profile, compare_entities, recent_changes) also overlap significantly.

Naming Consistency3/5

Most tools use lowercase underscore names, but conventions are mixed: verb_noun (search_datasets, resolve_entity, validate_claim) coexists with noun_phrase (dataset_details, entity_profile, ai_visibility_check) and domain-keyed names (deep_research, bet_research, polymarket_edges). No camelCase, and the pattern is readable, but there is no single predictable scheme.

Tool Count2/5

36 tools for a server named Datagov Il is excessive: only 5 tools actually serve the data.gov.il catalogue (search_datasets, dataset_details, datastore_query, list_groups, list_organizations), while 31 tools belong to a generic Pipeworx multi-source platform including prediction-market arbitrage, npm dependency scanning, and llms.txt generation. The count is far beyond what the apparent scope requires.

Completeness3/5

The data.gov.il read surface is decent—search, dataset details, datastore row queries, organizations, and groups cover core CKAN access—but standard operations like faceted/filtered search, geospatial queries, or resource/file download convenience are missing. Meanwhile, the huge Pipeworx side is over-complete for the nominal domain, making the overall surface feel lopsided rather than comprehensively aligned with the server's purpose.