Skip to main content
Glama

List BC Courses

list_courses
Read-onlyIdempotent

List all available courses in the BC curriculum database (K-12). Use this to discover what courses are available before querying specific curriculum data.

Args:

  • subject (string, optional): Filter by subject slug

  • grade (integer, optional): Filter by grade level (0=K, 1-12)

Returns: List of courses with subject, grade, name, and URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
gradeNoGrade level (0=Kindergarten, 1-12)
subjectNoBC curriculum subject slug (e.g., 'adst', 'science')

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, which cover safety. The description adds value by disclosing the return format ('List of courses with subject, grade, name, and URL') and the scope (K-12, all available courses). No contradictions with annotations exist, and the added behavioral detail is useful without being redundant.

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 concise and effectively front-loaded with the primary action and purpose. It includes a clear usage hint, a compact list of args, and a return description. Every sentence serves a distinct purpose, and the structure (intro, when-to-use, args, returns) makes it easy to scan.

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?

Despite lacking an output schema, the description explicitly specifies the return fields (subject, grade, name, URL). It also clarifies the tool's scope (K-12 database, all courses) and its role in the workflow (discovery before querying specific data). Given the tool's simplicity (2 optional params) and strong annotations, the description fully covers necessary context.

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 already covers 100% of parameter descriptions, providing both `subject` enum values and `grade` range with K/1-12 semantics. The description's 'Args' section essentially repeats the schema information without adding new details like examples, default behavior, or filtering semantics. Since schema coverage is high, a baseline score of 3 is appropriate.

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 a specific action ('List all available courses') with a defined resource ('BC curriculum database (K-12)') and scope ('all available courses'). It positions itself as a discovery tool separate from sibling tools like get_course_curriculum or search_curriculum, which are implied as follow-up actions ('before querying specific curriculum data').

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?

Explicit guidance is provided: 'Use this to discover what courses are available before querying specific curriculum data.' This gives clear when-to-use context and implies that other sibling tools are for querying specific curriculum data. However, it does not explicitly name alternatives or describe when not to use this tool versus those alternatives, so it stops short of full exclusion guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4/5.0
Disambiguation4/5

Each tool has a distinct primary purpose: listing courses, fetching full curriculum, searching, tracking progression, and finding cross-curricular connections. The only potential overlap is between get_competency_connections and search_cross_curricular, both of which handle cross-subject discovery, but they differ in input and output (one is competency-text-driven, the other is grade-and-subject-comparison-driven), so confusion is unlikely with clear descriptions.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case: get_ for retrievals, list_ for enumeration, and search_ for searching. The naming clearly reflects each tool's function, and there are no mixed conventions or vague verbs.

Tool Count5/5

Eight tools is a well-scoped count for a curriculum data server. The set covers the essential needs: discovery (list_courses, search_curriculum), detailed retrieval (get_course_curriculum), cross-curricular analysis (get_competency_connections, search_cross_curricular), progression tracking (get_grade_progression), and change monitoring (get_course_history, get_curriculum_changes). Each tool earns its place without redundancy.

Completeness4/5

The tool surface is quite complete for read-only curriculum access and analysis: it covers listing, full retrieval, search, cross-subject comparison, grade progression, and change/history tracking. A minor gap is that there is no dedicated tool to enumerate subjects or grades independently, though list_courses can filter by subject/grade and indirectly provides that information.