Skip to main content
Glama

get_collaboration_transcript

Retrieve the complete transcript of an active collaboration without ending it.

Instructions

Get the full transcript of a collaboration without ending it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
collaboration_idYesThe collaboration ID.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It does disclose the key side-effect boundary ('without ending it'), which is useful. However, it omits other behavioral context such as whether the collaboration must be active or what the transcript response contains.

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, tight sentence with no filler. The main purpose is front-loaded and the important behavioral qualifier is appended without redundancy.

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 single-parameter read operation, the description plus schema is nearly sufficient. Minor missing details, such as prerequisites or the shape of the returned transcript, would improve completeness but are not critical.

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?

The input schema already supplies 100% coverage for the single collaboration_id parameter with 'The collaboration ID.' The description adds no additional parameter semantics beyond that, so the baseline score 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?

The description states a specific verb and resource: 'Get the full transcript of a collaboration. The qualifier 'without ending it' also distinguishes this tool from end_collaboration and signals a read operation rather than a mutation.

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

Usage Guidelines4/5

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

The phrase 'without ending it' gives clear context: use this when you need the transcript while keeping the collaboration active. It does not explicitly name alternatives, but the sibling list includes end_collaboration and list_collaborations, making the intended use reasonably inferable.

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