get_grades
Retrieve grade items and feedback for a specific course to monitor academic progress.
Instructions
Return grade items and feedback for one course.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| course | Yes |
Retrieve grade items and feedback for a specific course to monitor academic progress.
Return grade items and feedback for one course.
| Name | Required | Description | Default |
|---|---|---|---|
| course | Yes |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It does not disclose permissions, whether it is read-only (implied but not stated), pagination, or how much feedback is returned. Only the bare scope is given.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single short sentence that is front-loaded with the verb and resource. It is efficient and wastes no words, though it could be slightly more explicit about scope.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with no annotations, no output schema, and 0% parameter documentation, the description is too thin. It omits prerequisites, response shape, and distinctions from sibling get_final_grades.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for the single 'course' parameter, likely a course identifier. It does not specify the expected format (ID vs name) or valid values, leaving a gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a specific verb (Return) and resources (grade items and feedback) scoped to one course. It is distinguishable from get_final_grades, which implies only final course grades, but the description does not explicitly name that sibling to clarify the distinction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No when-to-use guidance is given. With a close sibling like get_final_grades, the description should clarify when to request per-item grades vs final grades, but it provides none.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.