Skip to main content
Glama

get_assignments

Retrieve Brightspace assignment folders and due dates for a specified Ufora course so students can track deadlines.

Instructions

Return Brightspace assignment folders and due dates for one course.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
courseYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations exist, so the description carries the full behavioral burden. It implies a read-only operation and names the returned fields, but says nothing about permissions, pagination, sorting, or whether unpublished folders are excluded.

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 tightly written sentence with the resource and scope front-loaded and no filler. Nothing is wasted.

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 read tool with no output schema, the description is minimally adequate. However, with zero schema coverage and no annotations, it omits parameter format and return-shape details an agent would need to call it confidently.

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?

Only one parameter with 0% schema description coverage. 'For one course' loosely ties to the 'course' parameter and scopes it to a single course, but the description gives no clue about expected format (course ID vs. name) or how the value is resolved.

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?

States a specific verb ('Return'), resources ('assignment folders and due dates'), and scope ('for one course'). It is clear, but it does not distinguish itself from nearby siblings such as get_upcoming_due or get_overdue, so an agent cannot route on the description alone.

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 when-to-use guidance, no prerequisites, and no mention of alternatives. The reader must infer that this retrieves all assignments for a course rather than filtered due-date views offered by siblings like get_overdue.

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