Skip to main content
Glama

coherra_remember

Store a structured fact into persistent memory with category, name, value, and optional confidence or source tags for auditability.

Instructions

Store a structured fact in Sibyl Memory using Coherra's schema.

Wraps memory_remember with a versioned body shape so all Coherra entities are uniform and auditable.

Args: category: Logical grouping, e.g. "people", "projects", "prefs". name: Unique-within-category key, e.g. "alice", "acme-deal". value: The fact to store — any JSON-serialisable value. confidence: Optional float 0.0–1.0 expressing certainty. source: Optional provenance tag: "conversation", "tool", "inference", etc.

Returns: {"ok": True, "category": ..., "name": ...} on success.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
valueYes
sourceNo
categoryYes
confidenceNo

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

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

With no annotations, the description must carry the behavioral burden by itself. It does add some transparency: it states that the tool wraps memory_remember, enforces a versioned body shape for uniformity/auditability, and returns a success dict. However, it does not disclose what happens on duplicate category/name (overwrite vs error), effect on existing memory, or any permission/rate-limit constraints.

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 front-loaded with the core purpose, followed by a compact one-line implementation note, a structured Args list, and a Returns line. Every section carries information; there is no filler.

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?

The five parameters are fully explained, and the return shape is stated. The main gap is lack of guidance on duplicates or failure modes, which could matter for a memory-write tool. However, the presence of an output schema softens the return-value burden, and the description is largely sufficient for successful 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's Args section fully compensates. It gives logical grouping examples, unique-within-category semantics for name, JSON-serializable requirement for value, a 0.0–1.0 range for confidence, and provenance examples for source. This goes beyond the raw schema types.

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 pair: 'Store a structured fact in Sibyl Memory using Coherra's schema.' This clearly distinguishes the write operation from retrieval siblings like coherra_recall and coherra_list, and the mention of a versioned body shape adds precision.

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 description implies the tool is for persisting facts but never explicitly states when to choose it over siblings or when not to use it. There is no exclusionary guidance (e.g., 'use coherra_recall to read'), so the agent must infer usage from the verb 'Store' and the sibling names.

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