Skip to main content
Glama
oliverhruby

EduPage MCP Server

get_school_year

Retrieve the current school year for any EduPage school subdomain. Returns the starting year as an integer, using the active subdomain if none is specified.

Instructions

Return the current school year (starting year). Read-only.

Args: subdomain: School to query (defaults to the active subdomain).

Returns: dict: {'school_year': , 'subdomain': ...}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
subdomainNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.5.0

TDQS

A4.4/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It explicitly discloses 'Read-only', clarifies the default subdomain behavior, and states the return format. It could add error or authentication context, but for a trivial read operation this is sufficient 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?

The description is compact and front-loaded with the core purpose, then uses a clear Args/Returns structure. Every sentence adds distinct value without repetition or filler.

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

Completeness5/5

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

Even though there is no output schema, the description provides the exact return dict format and explains the only parameter's behavior. For a one-parameter, read-only getter, nothing essential is missing.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must compensate. It defines 'subdomain' as 'School to query' and specifies it 'defaults to the active subdomain', adding meaningful semantics beyond the bare string type and null default in the schema.

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 'Return' with a clear resource 'current school year (starting year)' and explicitly states 'Read-only'. This precisely distinguishes the tool from its siblings and leaves no ambiguity about its function.

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

Usage Guidelines3/5

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

The description implies when to use the tool (when the current school year is needed) and explains the subdomain parameter, but it does not explicitly compare against sibling tools or state when not to use it. For a simple getter with no close sibling overlap, this is acceptable but still mostly implicit guidance.

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