Skip to main content
Glama
EquateItAu

ClassQuill MCP server

by EquateItAu

get_session

Read-onlyIdempotent

Retrieve a tutoring session's details by providing its session ID. Use this to access session information from ClassQuill tutoring data.

Instructions

Get Session

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
session_idYesSession UUID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
modeNo
titleNo
statusNo
ends_atNo
tutor_idNo
starts_atNo
created_atNo
student_idNo
subject_idNo
completed_atNo
duration_minutesNo
amount_owed_centsNo
student_rate_centsNo
tutor_pay_rate_centsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.4

TDQS

C2.2/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, openWorldHint=true, and destructiceHint=false. The description adds no behavioral context beyond the word 'Get', which merely echoes the read-only nature already captured by annotations. It does not mention auth, rate limits, pagination, or return behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

At only two words, the description is under-specified rather than concisely structured. It repeats the title and provides no additional substance for an agent to act on.

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

Completeness2/5

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

Although the tool is simple and has a single well-documented parameter plus an output schema, the description still lacks semantic context: what a session represents in this domain, how a session_id is obtained, and how this call differs from list_sessions. The agent could guess, but the description alone is incomplete.

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?

The input schema fully covers the sole parameter with 'Session UUID' and 100% schema description coverage. The description adds no parameter information, but with full schema coverage the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Get Session' restates the tool name and title exactly. It names an operation and resource but does not explain what a session is, what it returns, or how it differs from sibling tools like list_sessions.

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?

The description provides no guidance on when to use this tool versus alternatives. There are no exclusions, conditions, or mentions of list_sessions or other get_* siblings, so the agent must infer usage from the name and required session_id.

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