Skip to main content
Glama

Look up an instructor

instructor_info
Read-onlyIdempotent

Find a UCI instructor's title, department, courses taught, and average GPA to evaluate them before enrolling.

Instructions

Find a UCI instructor and see their title, department, the courses they have taught, and their average GPA given across all courses. Use to evaluate a professor before enrolling.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoInstructor name or part of it, e.g. "Shindler".
ucinetidNoExact UCInetID if known.
includeGradesNoAlso fetch grade distributions per course taught (default true).

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already cover read-only, idempotent, non-destructive behavior. The description adds meaningful behavioral context by stating that it returns courses taught and an average GPA aggregated across all courses, which goes beyond the schema and helps the agent understand aggregation behavior.

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 two concise sentences with no filler. The core action and output are front-loaded, and the use case is added in a single closing sentence. Every word 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?

Given the rich annotations, complete schema descriptions, and optional parameters, the description provides enough context for an agent to select and call the tool. It does not fully specify behavior when no parameters are supplied, but the schema's optionality and openWorldHint mitigate that gap.

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 baseline is 3. The description does not add meaning beyond the schema for parameters like name, ucinetid, and includeGrades, but it does imply the output context in which those parameters are used.

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 ('Find') and resource ('UCI instructor'), and enumerates the exact returned data points: title, department, courses taught, and average GPA. This clearly distinguishes it from sibling tools like course_grades, which focus on grades for a course rather than an instructor profile.

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

Usage Guidelines4/5

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

The description gives an explicit use case: 'Use to evaluate a professor before enrolling.' It does not name alternative tools or state when not to use it, but the context is clear enough for an agent to select it over the listed siblings.

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