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

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

Annotations already indicate write (readOnlyHint false), idempotent (idempotentHint true), and non-destructive (destructiveHint false). The description adds valuable context: memory is scoped by identifier, authenticated users get persistent memory, anonymous sessions retain for 24 hours. This exceeds annotation coverage without contradiction. Slight gap: no mention of overwrite behavior or return value, but idempotent hint implies overwrite.

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 primary purpose. Every sentence earns its place: purpose, usage guidance, and storage/persistence details. No redundancy or filler.

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 rich annotations and 100% schema coverage, the description covers purpose, use cases, persistence, scoping, and sibling relationships. It lacks an output schema, but no return-value explanation is expected for such a straightforward write operation. The description is fully self-contained.

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 clear descriptions for both key and value, so the baseline is 3. The description adds examples of use ('a resolved ticker, a target address...') that reinforce but do not significantly extend the schema's meaning. The key-value scoping is mentioned but already implied by the schema.

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 clear, specific verb and resource: 'Save data the agent will need to reuse later.' It distinguishes itself from siblings by explicitly pairing with recall and forget, and clarifies cross-session scope. The purpose is unmistakable and well-differentiated.

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?

It provides explicit guidance on when to use: 'Use when you discover something worth carrying forward' with concrete examples (resolved ticker, target address, user preference). It also explains persistence differences (authenticated vs anonymous) and names complementary tools, making the alternative usage clear.

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

The set mixes several unrelated domains (LibriVox, Pipeworx data lookup, Polymarket betting, memory, subscriptions), and within those domains there is heavy overlap: ask_pipeworx/ask_pipeworx_beta/ask_pipeworx_grounded/deep_research all route to the same 5,798 tools, and polymarket_edges/polymarket_arbitrage/polymarket_edge_tracker/polymarket_fill_risk/bet_research all scan prediction-market opportunities. An agent can easily pick the wrong tool when the same question fits several of them.

Naming Consistency3/5

Names are mostly lowercase snake_case, but the patterns are inconsistent across domains: some are verb-first (ask_pipeworx, compare_entities, generate_llms_txt), some are noun-first (audiobook, tracks, polymarket_edges), and pluralization varies (audiobook vs audiobooks, authors vs tracks). The Pipeworx family is internally consistent, but the overall set has no unified convention.

Tool Count2/5

35 tools is heavy for a server named Librivox, and only 4 of them (audiobook, audiobooks, authors, tracks) actually relate to LibriVox. The remaining ~31 tools (Pipeworx, Polymarket, memory, subscriptions, AI visibility) make the count far exceed what the server name and apparent purpose suggest.

Completeness2/5

For a LibriVox-focused server, the tool surface is thin: search and fetch audiobooks, search authors, and list tracks, but no browse by genre, no reader/search-by-reader, no language filter, no author detail endpoint. The Pipeworx side is quite comprehensive, but it does not make up for the gap relative to the server's stated identity.