Skip to main content
Glama

Recall

recall
Read-onlyIdempotent

Retrieve a value previously saved via remember, or list all saved keys (omit the key argument). Use to look up context the agent stored earlier — the user's target ticker, an address, prior research notes — without re-deriving it from scratch. Scoped to your identifier (anonymous IP, BYO key hash, or account ID). Pair with remember to save, forget to delete.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyNoMemory key to retrieve (omit to list all keys)

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "key": "user_research_topic"
      +  },
      +  {}
      +]
  2. First observed

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds valuable context about scoping ('anonymous IP, BYO key hash, or account ID') and the listing behavior when key is omitted, which is beyond annotation coverage.

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?

Description is three sentences, front-loaded with the core action, and every sentence earns its place without redundant phrasing.

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 one-parameter tool with strong annotations and no output schema, the description covers purpose, usage, scoping, and complementary actions fully. No significant 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% and the property description already states 'omit to list all keys.' The description adds no further parameter detail beyond what the schema provides, so baseline 3 is appropriate.

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 states a specific verb and resource: 'Retrieve a value previously saved via remember, or list all saved keys.' It clearly distinguishes itself from siblings by naming remember and forget as complementary tools, and explains the optional key behavior.

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?

Provides explicit when-to-use context: 'Use to look up context the agent stored earlier... without re-deriving it from scratch.' It elaborates on scenarios (target ticker, address, research notes) and pairs with remember/forget, giving clear guidance on the workflow.

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

Multiple tools have unclear boundaries: ask_pipeworx and ask_pipeworx_beta are described as currently identical, and citation vs citations differ only by pluralization while actually accepting different ID types (OCI vs DOI). The server is named Opencitations but 31 of 37 tools serve unrelated purposes, so an agent cannot infer what the set is for without reading very long descriptions.

Naming Consistency3/5

All names are snake_case and family prefixes (polymarket_*, ask_pipeworx_*, pipeworx_*) give some predictability. However, conventions are mixed: bare resource nouns (citation, citations, references, metadata) coexist with verb_noun tools (resolve_entity, validate_claim) and noun phrases (recent_changes, entity_profile, deep_research), so there is no single pattern that lets an agent predict tool names.

Tool Count2/5

37 tools is well past the 25+ threshold for a heavy set, and most are redundant with the server's own router tools — ask_pipeworx already reaches 5,759 underlying tools, making many direct tools overlapping conveniences. The scope also wildly overshoots the server name: only 6 of 37 tools serve the Opencitations citation-graph domain.

Completeness3/5

For the named OpenCitations domain, the core citation-graph read operations exist (metadata, incoming citations, outgoing references, counts, OCI record lookup), but there is no paper/DOI discovery or search tool — an agent must already possess a DOI, a dead end for title/author queries. The broader accidental domain (data routing, company research, prediction markets, monitoring) is covered unusually well, but that does not serve the server's stated purpose.