Skip to main content
Glama

coherra_recall

Retrieve a stored Coherra entity by category and name, returning the complete structured body (value, confidence, source, created_at, updated_at, version) or a not-found error.

Instructions

Fetch a single Coherra entity by (category, name).

Returns the full entity including the structured Coherra body (value, confidence, source, created_at, updated_at, version). Raises a NOT_FOUND error if the entity does not exist.

Args: category: The category the entity was stored under. name: The unique-within-category key.

Returns: {"ok": True, "category": ..., "name": ..., "body": {...}}

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
categoryYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

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

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden, and it delivers: it discloses the complete return payload (value, confidence, source, created_at, updated_at, version), the exact return envelope, and the NOT_FOUND error condition. The read-only nature is implied by 'Fetch' rather than stated outright, and no auth or side-effect information is given, but for a simple recall tool the disclosed error and return behavior is substantive and above average.

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 with clear sections (purpose, return body, error case, args, returns) and front-loads the core purpose. The Returns JSON block is slightly redundant given an output schema exists, and the return body is described twice, but the overall length is justified and no sentence is wasteful.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple 2-parameter fetch tool, this is nearly complete: purpose, parameter semantics, return shape, and error behavior are all covered. Minor gaps exist — it doesn't state the dependency on coherra_remember (entities must be stored before recall succeeds) or explicitly confirm the operation is non-mutating — but nothing critical is missing for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must fully compensate, and it does. 'category: The category the entity was stored under' and 'name: The unique-within-category key' add real relational semantics — the agent learns that uniqueness is scoped within category, which is essential for correct use and is not derivable from the bare 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 opens with a specific verb+resource statement: 'Fetch a single Coherra entity by (category, name).' The word 'single' plus the exact lookup key clearly differentiates it from siblings like coherra_list (listing) and coherra_remember (storing). An agent can tell this is the point-read tool without opening any sibling schema.

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

Usage Guidelines3/5

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

The usage context is implied by the phrasing — fetch one known entity by exact key — and the NOT_FOUND error behavior tells the agent what happens when the key is absent. However, the description never explicitly names alternatives (e.g., 'use coherra_list to browse entities' or 'use coherra_remember to store first'), so the when-to-use vs. when-not-to-use guidance is left to inference rather than stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Steve2009729/coherra'

If you have feedback or need assistance with the MCP directory API, please join our Discord server