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

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

Annotations already indicate idempotentHint=true and destructiveHint=false, so the description adds value by disclosing scoping ('scoped by your identifier') and persistence nuances ('Authenticated users get persistent memory; anonymous sessions retain memory for 24 hours'). It does not contradict annotations, though it could have explicitly mentioned overwrite behavior, but the idempotency hint partially covers that.

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 long, front-loaded with the primary purpose. Every sentence earns its place: purpose, usage examples, and persistence details. No filler or redundancy.

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 tool with only two parameters and no output schema, the description covers usage context, persistence, scoping, and sibling relationships. It is missing potential details like error handling or overwrite semantics, but those are not critical given the tool's simplicity and the presence of annotations. Overall, it is sufficiently complete for an agent to use it correctly.

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% (both key and value have descriptions with examples). The description itself mentions 'key-value pair' and gives examples of values, but does not add new parameter-level detail beyond what the schema already provides. Thus, baseline 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 'Save data the agent will need to reuse later' with a specific verb and resource. It distinguishes itself from siblings like 'recall' and 'forget' by explicitly mentioning pairing. The examples of what to save (ticker, address, preference) make the purpose very concrete.

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?

The description explicitly says 'Use when you discover something worth carrying forward' and provides specific scenarios. It also names alternatives: 'Pair with recall to retrieve later, forget to delete.' This gives clear when-to-use and when-not-to-use guidance relative to sibling tools.

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 tools have significantly overlapping purposes, especially the ask_pipeworx family, deep_research, and validate_claim, plus a dense cluster of polymarket_* tools and two AI-visibility checkers. The ship-related tools are distinct, but an agent would struggle to choose among the many broadly similar query/research tools.

Naming Consistency3/5

Names are mostly snake_case and readable, but they follow no consistent convention: generic one-word verbs like remember and forget sit alongside branded names like ask_pipeworx, noun-style names like entity_profile, and prefix families like polymarket_*. The inconsistency is noticeable but not chaotic.

Tool Count2/5

34 tools is well above the well-scoped range, and the vast majority are unrelated to the server name 'Vessel Tracking'. The live-ship tools are a tiny minority buried inside a broad general-purpose data, research, and prediction-market platform, making the overall set feel bloated and misaligned with its stated identity.

Completeness1/5

As a vessel-tracking server, the surface is severely incomplete: only ais_coverage_check, live_ship_position, and live_ships_in_area relate to shipping, with no vessel lookup by name/IMO, no historical positions, no voyage data, and no port-call information. The actual tool set is rich as a general data platform, but that is not what the server name promises.