Skip to main content
Glama

Download My Submission Files

download_my_submission_files

Download your submitted Canvas assignment attachments to a local folder. Optionally filter by course or assignment, and include submission history, without modifying coursework.

Instructions

Download my submitted assignment attachments locally. This never submits or modifies work.

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
assignment_idNoOptional assignment ID; omit to download all assignment submissions
include_historyNoInclude attachments from submission history attempts

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the burden. It discloses a key behavioral trait (non-mutating, never submits or modifies work), which is valuable. However, it does not mention that it writes files to disk, how it handles existing files (except the force parameter in schema), or any network/error behavior. The single safety guarantee is useful but incomplete.

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 sentences with zero redundancy. The primary action and key safety guarantee are front-loaded. Every word contributes value.

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?

No output schema exists, so the description should explain what the tool returns or does beyond the action. It does not mention return values, potential disk usage, or timing. With five parameters, some explanation of how they combine (e.g., assignment_id vs. all submissions) is implicit in the schema but not in the description. Adequate but with gaps.

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 five parameters are already documented. The description adds no additional meaning about parameter usage or interactions beyond what the schema provides. Baseline of 3 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 clearly states the action (download), the resource (my submitted assignment attachments), and the destination (locally). It also explicitly clarifies that it never submits or modifies work, distinguishing it from mutation tools. This is a specific verb+resource statement.

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 provides context (downloads my submissions) but does not explicitly state when to use this tool versus alternatives like download_course_files or get_my_submission. It only implies usage by naming the action; no exclusions or comparison to siblings are given.

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