Skip to main content
Glama

get_all_kingdoms

List every kingdom in the current tournament with territory counts, status, net earnings, reputation, and standings points; page the wide field with limit and offset.

Instructions

View all kingdoms in the current tournament - names, territory counts, status, net earnings, reputation, and points - the SAME weight the standings table shows, so a fallen crown weighs 0 here exactly as it does at the gong. Ordered by land held, not by rank (get_leaderboard is the table that pays). This row is WIDE: on a 200-crown field one page is tens of kilobytes, so page it - limit defaults to the whole field, offset skips, and the envelope carries total and has_more. Use get_leaderboard with format="compact" when all you need is who stands where.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoRows per page (max 200; default: the whole field)
offsetNoSkip this many kingdoms - offset=50 with limit=50 reads the next fifty
api_keyNoYour Crowns API key - PASS IT. A tournament that is not published yet is invisible to an anonymous reader, and this door then answers total=0, which reads exactly like an empty world. Your key is a seat in this world and makes it visible.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and does so: it discloses ordering semantics (land held, not rank), payload width (tens of kilobytes), the pagination envelope (total, has_more), and a critical auth caveat that anonymous reads of unpublished tournaments silently return total=0, which mimics an empty world.

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?

Front-loaded with purpose and immediately followed by the pagination and alternative-tool guidance. Some phrasing is flavorful ('a fallen crown weighs 0 here exactly as it does at the gong'), which is decorative but does encode the points-weighting meaning, so it mostly earns its place.

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?

No output schema exists, and the description compensates by enumerating returned fields and the pagination envelope. Auth behavior, ordering, and size characteristics are all covered, leaving nothing an agent needs missing.

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?

Schema coverage is 100%, so baseline is 3, but the description adds behavioral meaning beyond the schema: limit defaults to the whole field, offset reads the next slice, and the response envelope carries total/has_more. The api_key visibility consequence is elaborated rather than merely restated.

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?

States a specific verb and resource ('View all kingdoms in the current tournament') and enumerates the returned fields (names, territory counts, status, net earnings, reputation, points). It also names its sibling get_leaderboard and explains the differentiator (ordering by land held, not rank), so an agent can distinguish it without opening a schema.

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

Usage Guidelines5/5

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

Explicitly routes to the alternative tool: 'Use get_leaderboard with format="compact" when all you need is who stands where.' It also gives the operational condition for paging ('on a 200-crown field one page is tens of kilobytes, so page it').

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