Skip to main content
Glama
SleepyPandas

UofT Timetable Builder MCP

by SleepyPandas

get_reference_data

Read-onlyIdempotent

Fetch valid division, campus, delivery-mode, and sorting reference values so MCP clients can build accurate UofT timetable searches and schedules.

Instructions

Get division, campus, delivery-mode, and sorting reference values.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds that the tool surfaces four specific reference categories, but says nothing about return shape, caching, or how values are keyed. Slight added value over annotations-only, but modest.

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 that enumerates the four value categories with no padding or repetition. Every clause earns its place.

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?

With no input parameters, no output schema, and safety covered by annotations, the description's main job is to convey what the caller receives, which it does by naming the four reference sets. It would be stronger if it indicated the return structure or clarified the overlap with get_divisions.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool takes zero parameters, so there is no parameter semantics to document; the baseline for a parameterless tool is 4. The description correctly implies no filtering input is required.

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?

The description names a specific verb ('Get') and resource ('reference data') and enumerates exactly which reference sets are returned (division, campus, delivery-mode, sorting). That is more informative than a tautology. However, it does not differentiate itself from the sibling get_divisions, which appears to overlap with the 'division' reference values it claims to return.

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 call this tool versus alternatives, nor any mention of prerequisites or the overlapping get_divisions sibling. Usage must be inferred entirely from the noun phrase.

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