Skip to main content
Glama
viftode4
by viftode4

get_recording_login_status

Read-onlyIdempotent

Check login progress for Collegerama recordings to confirm access before reading saved sessions.

Instructions

Read progress of this process's interactive Collegerama login. A saved recording session is verified when read_recording runs.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare this a safe, idempotent read, so the bar for extra context is lower. The description adds meaningful behavioral detail: the login is process-scoped and the saved recording session is verified when read_recording runs, which clarifies the lifecycle beyond what the annotations convey.

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 short sentences with no filler. The primary action is front-loaded, and the second sentence provides just enough lifecycle context to make the tool's role understandable without redundancy.

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

Completeness3/5

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

Given there is no output schema, the description could more explicitly state what kind of value the agent should expect from 'progress' (e.g., a boolean, a step count, or a status string). It is adequate for invoking the tool with zero parameters, but the return semantics are left ambiguous.

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

Parameters4/5

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

This tool takes zero parameters, so the baseline is 4. The description does not need to explain parameter behavior and correctly focuses on what the status read represents rather than any argument details.

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 uses a specific verb ('Read') and identifies a precise resource: the progress of this process's interactive Collegerama login. It also distinguishes itself from related tools like read_recording and begin_recording_login by framing it as a progress-check for an existing login flow.

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 when to use the tool—before read_recording, to check whether the interactive login has completed—but it never states this explicitly. It also does not mention alternatives or exclusion conditions, leaving the agent to infer the intended placement in the login sequence.

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