Skip to main content
Glama

board_totals

Live GSPC board totals from https://councilof.ai/api/gspc. Returns the slot count and the measured count as two labelled numbers WITH their kind — a slot is a declared position on the board, a measurement is a real run behind it; the two are never summed and never swapped — plus as_of dates for the board and for this fetch. We measure, never certify. If the board cannot be fetched the answer is a distinct UNREACHABLE state: no cached number is ever presented as live.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.4/5.0
Behavior5/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, and it does so thoroughly. It explains the semantic distinction between slot and measurement, states that the two are never summed or swapped, discloses that the tool measures rather than certifies, and clearly describes the UNREACHABLE state with the guarantee that no cached number is presented as live.

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 dense but not bloated. It front-loads the source and live nature of the data, then explains the two counts, their relationship, the dates, and the failure behavior. The phrasing 'We measure, never certify' is slightly stylistic, but the rest of the description earns its place by conveying important semantics.

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?

Given there is no output schema, no annotations, and zero parameters, the description is remarkably complete. It tells the agent exactly what values are returned, what they mean, how they differ, what freshness information is included, and what happens if the board cannot be fetched. No critical operational detail is missing for correct invocation and interpretation.

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 tool has zero parameters, so the description has no parameter semantics to add. It instead clarifies the meaning of the two numeric values it returns, which is the closest relevant semantic contribution. Baseline 4 is appropriate for a parameterless tool.

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 states a specific verb and resource: 'Live GSPC board totals from https://councilof.ai/api/gspc.' It also specifies the exact return elements — slot count, measured count, and as_of dates — making it unmistakable what this tool does and how it differs from the sibling tools.

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

Usage Guidelines3/5

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

The description clearly implies when to use this tool: whenever a caller needs board totals presented live from the GSPC endpoint. However, it does not explicitly state when not to use it or compare itself to alternatives like list_cards or verify_card, so the usage guidance is implied rather than explicit.

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

Each tool maps to a distinct operation: aggregate board totals, one axis row, a card leaf, the public root, the card index, signature verification, and inclusion verification. The descriptions carefully separate overlapping concepts such as measured vs. unmeasured, GSPC vs. public-root, and signature vs. inclusion, so an agent is unlikely to select the wrong tool.

Naming Consistency4/5

Most tools follow a clear verb_noun pattern: get_axis, get_card, get_root, list_cards, verify_card, verify_inclusion. board_totals breaks the pattern by using a noun phrase rather than an imperative verb, but the naming is still snake_case, readable, and not chaotic.

Tool Count5/5

Seven tools is well-scoped for a read-and-verify service: two GSPC board queries, three root/card retrieval or listing operations, and two verification checks. Each tool earns its place and there is no obvious redundancy.

Completeness5/5

The tool surface covers the full read/verify lifecycle: board totals, individual axes, root and card retrieval, card listing, signature verification, and merkle inclusion checks. Write or admin operations are not implied by the server's purpose, so there are no apparent dead ends.

Resources