Skip to main content
Glama

Download Course Files

download_course_files

Download course files locally, generate indexes, and skip identical existing files unless re-download is forced.

Instructions

Download course files locally and generate indexes. Existing same-size files are skipped unless force is true.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
forceNoRe-download even when a same-size local file exists
course_idYesCanvas course ID
output_dirNoOptional local output directory for generated indexes/downloads

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/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 disclosure burden. It does disclose the important skip-same-size-and-force behavior, but it omits local filesystem side effects, overwrite/merge semantics, and any failure or exception conditions.

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 concise sentences with the core purpose front-loaded and a second sentence adding the key behavioral nuance. No filler or redundant phrases.

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

Completeness2/5

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

There is no output schema and no annotations, yet the tool performs local downloads and index generation. The description fails to explain return values, what indexes refer to, how output_dir is used, or what the operation returns on success or failure.

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 description coverage is 100%, so all three parameters are already documented. The description adds no extra parameter semantics beyond what the schema provides, yielding the baseline score of 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a concrete action ('Download course files locally and generate indexes') with a specific resource ('course files'), making the core purpose clear. It is not explicitly differentiated from sibling generate_course_index, but the download-first framing helps distinguish it from listing/planning siblings.

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 like plan_course_download, generate_course_index, or list_course_files. The agent is left to infer the intended workflow from the name and sibling list.

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