Skip to main content
Glama

Resolve Video Auth

resolve_video_auth

Resolve SJTU video authentication for a Canvas course and retrieve redacted auth metadata to access video resources without simulating login.

Instructions

Resolve SJTU video auth for one Canvas course and return only redacted auth metadata.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
course_idYesCanvas course ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It does disclose an important safety property by promising 'only redacted auth metadata,' but it does not clarify whether the operation is read-only, whether it contacts an external SJTU service, or what error/performance behavior to expect.

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?

A single sentence with no wasted words and no repetition of the title. The action, scope, and output constraint are all front-loaded in one clean clause.

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?

For a simple one-parameter tool with no output schema, the description is nearly sufficient: input and general return type are stated. However, it omits deciding-when details and doesn't hint at the structure of the redacted metadata or failure modes, leaving some ambiguity for an agent choosing among many video-related siblings.

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 schema already fully documents course_id as a Canvas course ID (100% coverage), so the description need only add context. It adds only that the tool works on 'one Canvas course,' which is marginal and does not change the baseline.

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 names a specific action ('Resolve'), a specific resource ('SJTU video auth'), and a scope ('one Canvas course'). It also states the output is 'only redacted auth metadata,' which differentiates it from sibling tools that list videos, return video info, or report video status.

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?

There is no statement about when to prefer this tool over siblings such as video_status, get_video_info, or list_course_videos, and no prerequisites are mentioned. The phrase 'for one Canvas course' only limits scope; it does not guide an agent's decision about whether this tool is the right one.

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