Skip to main content
Glama

Get ingestion status

get_event_status
Read-onlyIdempotent

Report where one memory is in the ingestion pipeline and whether it is searchable yet. Poll this after add_memory instead of adding again.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
memory_idYesThe memory id returned by add_memory.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
memory_idYes
created_atNo
searchableYesTrue once the memory has an embedding and can be found by search.
processing_errorNo
processing_statusNo
processing_attemptsNo
processing_completed_atNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, non-destructive behavior, so the safety profile is covered. The description adds real context beyond them: this is a polling tool reporting pipeline position and searchability. It does not mention whether statuses reach terminal states or how often to poll, so not a 5.

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?

Two tight sentences with zero waste; the purpose comes first and the usage directive second. Every clause carries information.

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?

With only one required parameter, an output schema covering return values, and annotations covering the safety profile, the description supplies everything needed to invoke it correctly. Minor gap in not hinting at possible ingestion states, but that is likely covered by the output schema.

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 single parameter is fully documented as 'the memory id returned by add_memory'. The description only restates 'one memory' and adds no format or sourcing detail beyond the schema, so the 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?

States a specific verb (report) on a specific resource (one memory's position in the ingestion pipeline) plus the key output fact (whether it is searchable yet). This cleanly separates it from content-returning siblings like get_memory and list_memory_events.

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?

Explicitly says when to call it (poll after add_memory) and warns against a concrete misuse (adding again). The trigger condition and the anti-pattern are both stated, leaving nothing to inference.

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.

Resources