Skip to main content
Glama

company_episode_get

Retrieve a single authorized episode by ID, including ordered events and candidate provenance, to support inspection and auditing.

Instructions

Get one authorized episode with ordered event and candidate provenance.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
clearanceNorestricted
tenant_idNolocal
episode_idYes
groups_jsonNo[]
principal_idNolocal-user
projects_jsonNo[]

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.1.3

TDQS

B3/5.0
Behavior3/5

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

There are no annotations, so the description carries the behavioral burden. It does add some context by mentioning 'authorized' and by describing the return composition as ordered event and candidate provenance. However, it does not explicitly state read-only behavior, authorization failure behavior, rate limits, or what happens when the episode is not found.

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 a single tightly written sentence with no filler. It front-loads the core operation and includes the most important distinguishing detail about provenance, earning its place.

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

Completeness1/5

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

For a tool with six parameters, no annotations, no output schema, and zero schema description coverage, this description is far too thin. It fails to explain required versus optional parameters, default semantics, authorization expectations, or return structure beyond a brief phrase, so an agent cannot reliably invoke it correctly.

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

Parameters1/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 compensate, but it mentions no parameter details at all. It does not explain episode_id, clearance, tenant_id, groups_json, principal_id, or projects_json, leaving the agent without meaningful guidance for populating the six parameters.

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 identifies a singular fetch operation ('Get one') on a specific resource ('authorized episode') and adds a distinctive outcome ('ordered event and candidate provenance'). This differentiates it from siblings like company_episodes_search, which implies searching rather than retrieving a single episode.

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

Usage Guidelines2/5

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

No guidance is provided about when to use this tool versus alternatives such as company_episodes_search or company_memory_get. The word 'one' implies a singular retrieval, but there is no explicit condition, prerequisite, or exclusion to help an agent choose this tool confidently.

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