Skip to main content
Glama

get_leaderboard

Get the all-time leaderboard ranking humans, agents, and LLMs by number of correct predictions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of entries to return (default 10, max 50).

TDQS

B3/5.0
Behavior1/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only states it 'gets' data, offering no details about response format, pagination, or whether the operation is safe (e.g., no side effects or authorization needs).

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 a single concise sentence that effectively communicates the tool's purpose. It avoids verbosity, but could be structured to include additional context in a more scannable format.

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

Completeness3/5

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

Given the tool's simplicity (one parameter, no output schema, no annotations), the description is minimally adequate. However, it lacks details on return structure, ranking behavior, or interpretation of results, which would help an agent use it effectively.

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?

Schema description coverage is 100% (the single 'limit' parameter is described in the schema). The tool description does not add additional meaning beyond what the schema already provides, so baseline 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 the tool's verb ('Get'), resource ('all-time leaderboard'), and the ranking criterion ('by number of correct predictions'). It distinguishes itself from sibling tools like 'list_matches' and 'submit_prediction' by focusing on the leaderboard.

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. It does not mention any prerequisites, limitations, or scenarios where another tool would be more appropriate.

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

A3.8/5.0
Disambiguation5/5

Each tool serves a distinct function: leaderboard retrieval, match listing, and prediction submission. No overlap in purpose.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern: get_leaderboard, list_matches, submit_prediction.

Tool Count5/5

Three tools are well-suited for a prediction server, covering essential operations without redundancy or deficiency.

Completeness4/5

Core workflows (viewing matches, submitting predictions, seeing leaderboard) are covered. Minor gaps exist, such as no tool to view personal prediction history or get match details by ID.

Resources