Skip to main content
Glama
GuanmingQiao

POLITEMall MCP Server

by GuanmingQiao

Get assignments

get_assignments

Retrieve assignment folders and due dates for a course. Provide the courseId to get dropbox items and deadlines in one response.

Instructions

Get dropbox/assignment folders and due dates for a course.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
courseIdYesThe course's orgUnitId, from list_courses

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the behavioral disclosure burden. It implies a read operation but does not mention what the returned data looks like, whether it can be empty, authentication expectations, or any side effects. This is a meaningful gap for a tool with no output schema.

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?

The description is a single concise sentence with no filler. Every word contributes to identifying the resource and scope, and the core purpose is front-loaded.

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?

The tool is simple with one well-documented parameter, so the description covers the basic call context. However, since there is no output schema, the description could usefully clarify the expected return shape beyond 'folders and due dates', and it does not.

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%, and the sole parameter courseId is already documented as the orgUnitId from list_courses. The description does not add further parameter-level meaning, but it also does not need to because the schema already provides adequate semantics.

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 states a clear verb ('Get'), a specific resource ('dropbox/assignment folders and due dates'), and a scope ('for a course'). This distinguishes it from sibling tools like get_grades and get_announcements without needing to open the schema.

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 guidance on when to use this tool versus alternatives such as get_course_content or get_calendar_events. The phrase 'for a course' implies context, but the description does not state when this tool is the right choice or when it is not.

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