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

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

Adds scoping and persistence duration details (24h for anonymous, persistent for authenticated) beyond annotations. Annotations already provide idempotentHint=true and destructiveHint=false; description aligns with these and adds context about lifetime and identity scoping.

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 well-structured sentences: core function, use cases, and technical details. No extraneous words, front-loaded with verb.

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?

Covers all necessary information: action, when to use, storage mechanism, persistence characteristics, and related tools. Given simple schema and no output schema, description is fully sufficient for agent decision and invocation.

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 parameter descriptions and examples. The description adds no additional parameter-level details beyond what the schema already provides, so baseline 3 applies.

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 later reuse, provides specific examples (ticker, address, preference), mentions key-value storage scoped by identifier, and references sibling tools (recall, forget) for differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says 'Use when you discover something worth carrying forward' and provides example scenarios. It also pairs with recall/forget but does not explicitly exclude cases; sibling tools provide alternative guidance.

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

Many tools have closely related or overlapping purposes: ask_pipeworx, ask_pipeworx_beta (currently identical), and ask_pipeworx_grounded all route to the same underlying toolset, while discover_tools and suggest_questions both help agents discover capabilities. The polymarket_* family also has several opportunity-scanning tools with subtle differences, though detailed descriptions help clarify.

Naming Consistency3/5

Names are mostly snake_case but follow mixed patterns: verb-first (ask_pipeworx, validate_claim), noun-first (entity_profile, bet_research, la_recent), and bare verbs (remember, forget, unsubscribe). The prefix groups (la_, pipeworx_, polymarket_) show some consistency, but there is no uniform verb_noun convention.

Tool Count2/5

34 tools is well into the 'too many' range for a single server. The surface bundles several distinct domains—structured data querying, prediction markets, LA open data, memory, subscriptions, and npm scanning—making it feel like a kitchen sink rather than a focused toolset.

Completeness4/5

Within each bundled sub-domain, coverage is strong: query/grounded/research/entity-profile/compare/validate covers data workflows; polymarket tools include research, edge scan, arbitrage, fill-risk, and cross-venue spread; LA data has search/query/recent; memory and subscription lifecycles are fully CRUD. Minor gaps exist (e.g., no way to browse LA dataset attributes beyond search), but no major dead ends.