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

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

Annotations indicate idempotentHint=true and destructiveHint=false. The description adds further context: 'Stored as a key-value pair scoped by your identifier. Authenticated users get persistent memory; anonymous sessions retain memory for 24 hours.' This covers scoping and retention. No contradictions 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.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured: starts with purpose, then usage guidelines, then behavioral details. It is concise with no redundant sentences, though could be slightly tighter.

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 the simple two-parameter input, no output schema, and clear annotations, the description fully covers what the tool does, when to use it, parameter semantics, and behavioral context (scoping, persistence). It is complete for an agent to select and invoke correctly.

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 has 100% coverage with descriptions for both parameters. The description adds meaningful examples and context (e.g., 'Memory key (e.g., "subject_property")'), reinforcing usage beyond schema basics.

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 purpose: 'Save data the agent will need to reuse later'. It specifies the verb 'save', the resource 'data' (memory), and provides concrete examples like 'resolved ticker, target address, user preference'. This differentiates it from sibling tools like 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?

The description explicitly states when to use: 'when you discover something worth carrying forward'. It also tells when not to use alternatives by mentioning pairing with recall and forget, and distinguishes between authenticated (persistent) and anonymous (24-hour) sessions.

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

Many tools occupy clearly different niches, but ask_pipeworx and ask_pipeworx_beta are currently identical, ask_pipeworx_grounded and deep_research heavily overlap the same router concept, and bet_research/polymarket_edges/polymarket_arbitrage all target similar 'find an edge' territory. An agent would need to read very long descriptions carefully to avoid selecting the wrong tool.

Naming Consistency4/5

Names are consistently lowercase snake_case and usefully grouped by prefixes like bnm_, polymarket_, and pipeworx_, which makes the set fairly scannable. However, conventions mix verb-first names (ask_, discover_, resolve_, validate_) with noun-phrase names (entity_profile, recent_alerts, recent_changes), so it is not a uniform verb_noun pattern.

Tool Count2/5

36 tools is well beyond the typical well-scoped 3-15 tool range, and the server bundles several distinct domains: BNM data, the Pipeworx research platform, prediction-market analysis, and memory/subscription management. This breadth would be better split into separate focused servers.

Completeness4/5

The BNM-specific surface is well covered, with dedicated tools for the main series plus a generic bnm_endpoint passthrough for anything else. The broader data side is also unusually complete, with routing, grounded answers, deep research, entity resolution, profiles, comparisons, and claim verification; only minor gaps remain, such as no dedicated historical endpoint for some BNM series.