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)

TDQS

A4.9/5.0
Behavior5/5

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

Annotations provide idempotentHint=true and destructiveHint=false. Description adds scope by identifier, persistence for authenticated users, 24-hour retention for anonymous, which goes beyond 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?

Single well-structured paragraph, front-loaded with main purpose. Every sentence adds value, no 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?

Given no output schema, the description sufficiently explains behavior, persistence, and pairing with recall/forget, providing complete context for an agent.

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 covers 100% with descriptions. Description adds helpful examples for key and value types (e.g., subject_property, target_ticker), adding value beyond 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 clearly states the tool saves data for reuse across conversations or sessions, with specific examples (ticker, address, preference). It distinguishes itself from siblings recall and forget.

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?

Explicitly says when to use: when discovering something worth carrying forward. Pairs with recall and forget, providing clear usage context.

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 overlapping purposes: the three ask_pipeworx variants are nearly identical, polymarket_edges and polymarket_arbitrage both scan for opportunities, and ai_visibility_check vs scan_competitor_ai_presence create confusion. Although descriptions are detailed, an agent could easily misselect among these.

Naming Consistency3/5

Most tools follow snake_case verb_noun (get_article, search_journals, resolve_entity), but there are brand-prefixed names (ask_pipeworx*, pipeworx_trending, pipeworx_feedback) and noun-phrase tools (entity_profile, bet_research) that break the pattern. The three ask_pipeworx variants are consistently named but confusable.

Tool Count2/5

35 tools is excessive for a coherent server, especially one where many tools are meta-routes (ask_pipeworx, deep_research) that could consolidate functionality. The count exceeds the 25-tool threshold for 'heavy' and includes several one-off tools (generate_llms_txt, scan_dependency) that don't fit the dominant data-access theme.

Completeness3/5

The DOAJ subset is complete for read-only search and retrieval, but the server lacks a clear domain: it mixes DOAJ, prediction markets, memory, and subscriptions. For the broader Pipeworx platform, there are some dead ends (e.g., no subscription editing, no raw historical market data, no batch tools), and the non-DOAJ tools create confusion about what the server is actually for.