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

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

Annotations already indicate write, idempotent, and non-destructive behavior. The description adds crucial context beyond those hints: key-value scoping by identifier, persistence differences between authenticated and anonymous sessions (24-hour retention), and the companion tools for retrieval and deletion. No contradiction with 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?

Three sentences, each earning its place: purpose + usage, storage semantics + retention, companion tools. Front-loaded with the core action, followed by when-to-use and contextual details. Zero wasted words.

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 write tool with no output schema, this description is complete. It covers storage semantics, persistence, scoping, retention, and integration with sibling tools. No significant gaps remain for an agent to misuse the tool.

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% with both parameters described and examples provided. The description adds semantic value by explaining the key-value relationship and scoping ('Stored as a key-value pair scoped by your identifier'), which reinforces how the parameters relate. This goes slightly beyond the schema's individual field descriptions, though the schema already carries most of the burden.

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 'Save data the agent will need to reuse later' — a specific verb and resource. It distinguishes from siblings by naming complementary operations: 'Pair with recall to retrieve later, forget to delete.' This clearly sets it apart from memory retrieval and deletion tools.

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?

Explicit usage guidance is provided: 'Use when you discover something worth carrying forward (a resolved ticker, a target address, a user preference, a research subject)...' This tells the agent exactly when to invoke the tool. It also names sibling tools recall and forget as complementary alternatives for later stages.

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

Several tool clusters have fuzzy boundaries: ask_pipeworx, ask_pipeworx_beta, ask_pipeworx_grounded, deep_research, discover_tools, and suggest_questions all overlap on 'find and query data,' while the five polymarket_* tools plus bet_research form a heavily overlapping prediction-market cluster. The three genuine InterPro tools are clear, but an agent would frequently struggle to pick the right meta-tool.

Naming Consistency3/5

Most tools follow a readable snake_case verb-first pattern like compare_entities, resolve_entity, and validate_claim. However, bare verbs (remember, forget, recall), product-prefixed nouns (pipeworx_feedback, pipeworx_trending), and variant suffixes (ask_pipeworx_beta, ask_pipeworx_grounded) break the pattern enough to feel inconsistent.

Tool Count2/5

34 tools is well above the typical well-scoped range, and many tools duplicate or partially overlap each other's functionality. The count is further inflated by unrelated domains—AI visibility, prediction markets, memory, subscriptions, package auditing—bundled into a server nominally named 'Interpro.'

Completeness2/5

The InterPro subset (search_entries, get_entry, entries_for_protein) is minimal and lacks obvious protein/proteome-level operations, while the rest of the server covers so many unrelated domains that no single domain has clear end-to-end coverage. The Pipeworx query side is broad, but the overall surface feels like several incomplete toolsets merged rather than one complete product.