Skip to main content
Glama

Player detail

get_player
Read-only

Retrieve complete player data from Comunio including history, records, averages, upcoming fixtures, buyout clause, and availability status. Read-only.

Instructions

Get everything Comunio knows about one player. Ids come from get_squad, get_market or get_offers.

Beyond the price and availability the squad already gives: season-by-season history going back years, the record of goals, cards and man-of-the-match awards, averages including a recent-form window, the next three fixtures, what the current owner paid, and the buyout_clause — what taking the player from their owner without consent would cost.

status_meaning spells out the status code, and available is true only when the player can actually be counted on.

Read-only: fetches current state and changes nothing.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
player_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
clubYes
nameYesPlayer name
ownerNoManager who owns the player
priceYesCurrent market value, in euros
recordYes
statusYesAvailability code, e.g. ACTIVE or YELLOW_RED_BANNED
historyYesPoints season by season, oldest first, as Comunio orders them
profileYes
watchedYesOn the signed-in manager's watchlist
averagesYes
owner_idNoThat manager's identifier
availableYesWhether the player can be counted on right now
player_idYesPlayer identifier
last_pointsNoPoints in the last matchday
status_infoNoComunio's note on the status
next_matchesYesUpcoming fixtures, soonest first
purchased_onNoWhen the owner bought them, or null for a player from the initial draft who was never bought
total_pointsNoPoints this season
buyout_clauseYes
purchase_priceNoWhat the current owner paid, in euros
status_meaningNoPlain-language reading of the status code

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.2

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description reinforces this with 'Read-only: fetches current state and changes nothing.' It goes beyond the annotation by detailing what data is returned (history, record, averages, etc.), which is useful behavioral context. No contradictions; it accurately reflects the tool's non-mutating nature.

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 well-organized and front-loaded: the first sentence states the purpose, followed by a paragraph listing key data fields, then status/availability, and finally the read-only guarantee. Every sentence adds value with no fluff. The use of backticks for field names aids readability.

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

Completeness4/5

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

The tool has an output schema (present but not shown), so the description need not detail every return field, but it lists the most important ones (history, record, averages, fixtures, buyout_clause, status_meaning, available). It also covers read-only behavior and ID sourcing. For a single-parameter getter, this is complete enough; it doesn't mention error cases, but that's acceptable given the schema and read-only nature.

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 description coverage is 0%, so the description must compensate. It does by stating 'Ids come from get_squad, get_market or get_offers,' which tells the agent exactly where to obtain the player_id. While it doesn't explicitly define player_id, the source hint is valuable and beyond the schema's bare integer type. It's sufficient for a single obvious parameter.

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 opens with a clear, specific action: 'Get everything Comunio knows about one player.' It distinguishes itself from siblings by explicitly stating it provides more than the squad's price/availability, and by listing the additional data fields (history, record, averages, fixtures, buyout clause). This makes the tool's unique purpose immediately obvious.

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 description tells the agent where player IDs come from ('get_squad, get_market or get_offers'), which implies these tools should be used first. It also contrasts with get_squad by saying 'Beyond the price and availability the squad already gives,' suggesting get_player is for deeper data. However, it does not explicitly state when NOT to use it (e.g., when only basic info is needed), so it's clear but not exhaustive.

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