Skip to main content
Glama
jmolinasoler

vbl-mcp

by jmolinasoler

Get poule standings

get_poule_standings

Retrieves official standings of a poule, with teams ranked by competition points, games played, wins/losses, and scores. Falls back to computed standings when official ranking is unavailable.

Instructions

Get the official standings (rangschikking/klassement) of a poule. Returns teams ranked with games played (wedAant), competition points (wedPunt), wins/losses and points scored/conceded. Falls back to standings computed from played matches if the official ranking is not exposed for this poule.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
poule_guidYesPoule GUID, e.g. BVBL26279180NAHSE11A

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.0

TDQS

A4.3/5.0
Behavior4/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. It discloses a key behavioral trait: it falls back to computed standings if the official ranking is not exposed. It also describes what data is returned, making the tool's behavior predictable.

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 compact, front-loaded with the core purpose, and every sentence earns its place. It combines purpose, output details, and fallback behavior without redundancy.

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 no output schema, the description sufficiently explains the return values and the fallback behavior. With one required parameter and a clear example in the schema, an agent has everything needed to select and invoke the tool correctly.

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?

There is only one parameter, poule_guid, and the schema already describes it with a concrete example. The tool description does not add extra parameter-level detail, but with 100% schema coverage the baseline of 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 a specific action ('Get the official standings') and resource ('of a poule'), and names the return content. It also distinguishes itself from sibling match-related tools by focusing on standings, not matches.

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 intended use is clear: retrieve standings for a poule, with an explicit fallback when official rankings are unavailable. It does not explicitly name sibling alternatives, but the resource and purpose are distinct enough that an agent can infer when to select this tool.

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