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

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

Annotations indicate idempotentHint=true and destructiveHint=false. The description adds behavioral details: key-value scoping, persistence differences for authenticated vs anonymous users (24-hour retention). 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?

The description is three sentences, front-loading the core purpose. Every sentence adds value (purpose, usage guidance, behavioral details). No 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 tool (2 required params, no output schema), the description covers all necessary aspects: purpose, usage, behavior, and relationships to sibling tools. No gaps remain.

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 descriptions for key and value. The description adds example keys and value description but does not significantly expand beyond the schema. Baseline 3 is appropriate as schema already handles parameter semantics.

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 verb ('Save data') and resource ('data the agent will need to reuse later'). It distinguishes itself from siblings by explicitly mentioning 'Pair with recall to retrieve later, forget to delete.' This provides unique purpose and differentiation.

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 gives explicit guidance on when to use ('when you discover something worth carrying forward') and provides concrete examples. It also directs to alternatives: 'Pair with recall to retrieve later, forget to delete.' This covers both usage context and exclusions.

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

B3.3/5.0
Disambiguation1/5

The tool set is severely mismatched: only 3 of 34 tools (get_pathway, list_pathways, search_pathways) relate to WikiPathways while the rest form overlapping Pipeworx/Polymarket families (ask_pipeworx vs ask_pipeworx_beta vs ask_pipeworx_grounded; multiple polymarket_* tools) with unclear boundaries and overlapping purposes.

Naming Consistency2/5

Naming conventions are highly inconsistent: product-specific names (pipeworx_feedback, pipeworx_trending), generic memory verbs (remember, recall, forget), and mixed snake_case patterns with no unifying verb_noun structure. The names do not reflect the WikiPathways domain at all.

Tool Count1/5

34 tools is far too many for a WikiPathways server, which only needs a handful of pathway-related operations. Nearly all tools belong to unrelated domains (SEC, FDA, Polymarket, npm, etc.), making the set feel bloated and unfocused.

Completeness1/5

For the stated WikiPathways purpose, only get, list, and search are present—no create, update, or delete operations—leaving obvious lifecycle gaps. The extensive non-WikiPathways tools do not contribute to the server's apparent domain coverage and create dead ends for agents expecting pathway management.