Skip to main content
Glama
GuanmingQiao

POLITEMall MCP Server

by GuanmingQiao

Get grades

get_grades

Retrieve your grade items and scores for a specific course by providing its course ID.

Instructions

Get your grade items and scores 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.4/5.0
Behavior2/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It only says the tool fetches grade data; it does not disclose response shape, pagination behavior, error cases, authorization needs, or explicitly affirm that it is read-only beyond the word 'Get'.

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 front-loaded sentence states the action, object, and scope with no filler. It avoids repeating the tool name and earns every word.

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

Completeness4/5

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

For a simple one-parameter getter, the description names the returned concept (grade items and scores), and the schema fully documents the parameter. It does not describe edge cases or output formatting, but nothing critical is missing for a tool of this complexity.

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 the input schema already explains courseId as the orgUnitId from list_courses. The description adds no parameter-level meaning, so it meets the baseline but does not go beyond it.

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 uses a specific verb ('Get') and resource ('grade items and scores') scoped to a course, which distinguishes it from siblings like get_assignments and get_course_content. 'Your' also clarifies that this returns the calling user's own grade data.

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 given on when to use this tool versus alternatives. The schema mentions that courseId comes from list_courses, but the description itself provides no prerequisites, exclusions, or alternative tool routing.

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