Skip to main content
Glama

Browse curriculum standards

legends_browse_standards
Read-only

Browses the public Legends of Learning curriculum taxonomy.

Without standard_set, lists the public standard sets (e.g. id "NGSS" for Next Generation Science Standards, "CCSS" for Common Core math), each with id, name, and subject_area; query filters them by name.

With standard_set (a set id from the list above), lists the standards in that set. Each standard has id, code (e.g. "2.OA.A.1" or an NGSS code), title, description, grades ("k" and "1"-"12"), and subject. Use a standard's id in legends_search_games' learning_objective_ids to find games aligned to it. query free-text matches code, title, and description; grade (integer, 0 = kindergarten) narrows to one grade level.

page (default 1) and page_size (default 10, max 25) paginate both modes.

Example: {"standard_set": "CCSS", "grade": 2, "query": "addition"} finds 2nd-grade Common Core standards about addition.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
gradeNoOnly standards for this grade level; 0 means kindergarten
queryNoFree-text filter (set names, or standard codes/titles/descriptions)
page_sizeNo
standard_setNoA standard set id (e.g. "NGSS", "CCSS"); omit to list the sets

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint: true, so the description adds value by detailing pagination, the two-mode behavior, filtering logic, and the fields returned. It does not mention error handling for invalid inputs, but overall provides substantial behavioral context beyond annotations.

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 well-structured with clear paragraphs, an example at the end, and no superfluous sentences. Each sentence adds value, and the information is front-loaded with the main purpose.

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 thoroughly covers the tool's behavior: two modes, pagination, filtering, and the data fields in results. The example further clarifies usage. This is complete for an agent to understand and use the tool correctly.

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 description adds meaning beyond the input schema by explaining the two-mode use of standard_set, clarifying grade as 0 for kindergarten, and specifying that query matches code, title, and description. It also provides defaults and max for page and page_size. With 60% schema coverage, the description compensates well.

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 it browses the public Legends of Learning curriculum taxonomy, with two distinct modes (list standard sets or list standards within a set). It distinguishes from sibling tools (legends_get_game, legends_search_games) that focus on games, not curriculum taxonomy.

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 provides clear guidance on when to use each mode (with or without standard_set) and explains how the query and grade parameters work. It also hints at integration with legends_search_games by mentioning using standard ids. However, it does not explicitly state when not to use this tool or compare it directly to siblings.

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.6/5.0
Disambiguation5/5

Each tool has a distinct purpose: browsing standards, searching games, and fetching game details. No overlap or ambiguity in their functionality.

Naming Consistency5/5

All tools follow the 'legends_' prefix with a consistent 'verb_noun' naming pattern (browse_standards, get_game, search_games), making it predictable.

Tool Count4/5

With only 3 tools, the set is minimal but sufficient for the server's purpose of accessing the public Legends of Learning catalog. It could benefit from a few more, but it's reasonable.

Completeness5/5

The tools cover the core workflows: exploring standards, searching for games, and retrieving detailed game info. No obvious gaps for a read-only public API.

Resources