Skip to main content
Glama
viftode4
by viftode4

list_official_grades

Read-onlyIdempotent

Retrieve official OSIRIS grades from My TU Delft using pagination. Supply offset and limit to read results, continuing until hasMore indicates no further pages.

Instructions

Read a page of your official OSIRIS results from My TU Delft. These are separate from Brightspace course gradebooks. Continue with nextOffset while hasMore is true; complete describes coverage of this response only. Unpublished or missing results are not inferred.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
offsetNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds valuable behavioral context beyond annotations: it explains that unpublished or missing results are not inferred, and that pagination fields describe coverage of the current response only. This is meaningful additional transparency.

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?

Three sentences, each earning its place: the first defines the resource and distinguishes it from Brightspace, the second gives pagination instructions, and the third clarifies a behavioral boundary. No fluff, no repetition of schema or annotation content.

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 paginated read tool with two optional parameters and no output schema, the description covers the essential usage: what it reads, how to paginate, and what it does not infer. The only minor gap is that it doesn't describe the response shape, but with no output schema and a simple list operation, the pagination instructions largely compensate. The distinction from Brightspace gradebooks also helps contextualize the tool within the larger sibling set.

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 0%, so the description carries the burden for parameter meaning. However, the description does not explicitly explain 'limit' or 'offset' parameters. It does mention pagination concepts (nextOffset, hasMore) which indirectly relate to offset, but it doesn't add direct semantic value for the parameters themselves. With 0% schema coverage, a 3 is appropriate because the description partially compensates through pagination context but doesn't fully document the parameters.

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 tool reads a page of official OSIRIS results from My TU Delft, explicitly distinguishing it from Brightspace course gradebooks. The verb 'Read' plus the resource 'official OSIRIS results' makes the purpose unambiguous, and the distinction from Brightspace gradebooks differentiates it from sibling tools like get_my_grades.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly explains pagination usage: 'Continue with nextOffset while hasMore is true' and clarifies that 'complete describes coverage of this response only.' It also implicitly distinguishes this from Brightspace gradebooks, which helps an agent choose this tool over get_my_grades or list_assignments. This is strong, actionable guidance.

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