Skip to main content
Glama

list_competition_pages

Fetch competition pages like rules, description, or evaluation by specifying the competition and optionally the page name.

Instructions

List competition pages (rules/description/evaluation)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
compYes
contentNo
page_nameNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.0.0

TDQS

C2.6/5.0
Behavior2/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 of behavioral disclosure. It only restates the list action and does not explain return format, filtering behavior, the effect of the 'content' flag, or any other runtime characteristics.

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

Conciseness4/5

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

The description is brief and front-loaded with the key action and resource, containing no filler. However, it is clipped to a phrase rather than a full sentence, and the brevity comes at the cost of meaningful detail.

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?

With three parameters, no schema descriptions, no annotations, and no output schema, this description leaves too much unstated. The basics of what the tool lists are visible, but parameter semantics and expected return values are missing.

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

Parameters1/5

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

Schema description coverage is 0%, and the description does not explain the 'comp', 'content', or 'page_name' parameters. An agent must infer their meaning from names alone, which is insufficient for correct invocation.

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

Purpose4/5

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

The description uses a specific verb and resource: 'List competition pages,' and the parenthetical '(rules/description/evaluation)' clarifies which page types are included. It is distinct enough from siblings like list_competitions and list_competition_files, though it does not explicitly contrast with them.

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?

No guidance is given about when to use this tool versus alternatives such as list_competition_files or list_competition_submissions. The intended selection context is only implied by the tool name and resource type.

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