Skip to main content
Glama
nickdesi

FFBB MCP Server

Outils agrégés club

ffbb_club
Read-onlyIdempotent

Retrieve French basketball club schedules, team rosters, and standings. Use it to get remaining matches, full calendars, or classification results by club or competition.

Instructions

Outils agrégés club : calendrier (matchs pluriels), équipes engagées ou classement.

Outil de référence pour toute demande au pluriel : matchs restants, calendrier complet. Résout NM3, PNM, etc. vers la bonne équipe.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNombre max de matchs retournés (1-100, pagination).
phaseNoNom ou numéro de phase (ex: 'Phase 2').
scopeNoScope : 'team' (équipe résolue), 'club' (global club) ou 'competition'.
actionNoAction : 'calendrier' (matchs pluriels/restants), 'equipes' ou 'classement'.calendrier
filtreNoFiltre catégorie/genre (alias pour 'categorie', ex: 'U11M', 'Senior', 'NM3').
offsetNoIndex de départ pour pagination calendrier (défaut 0).
date_finNoDate fin YYYY-MM-DD (action='calendrier').
group_byNoRegroupement : competition, team ou date.
poule_idNoID poule (action='classement' ou 'calendrier'). Optionnel si club et catégorie sont fournis.
categorieNoCatégorie, division ou filtre d'équipe (alias pour 'filtre', ex: 'NM3', 'U15M', 'Senior').
club_nameNoNom du club (ex: 'Stade Clermontois'). Requis si organisme_id absent.
season_idNoID de la saison FFBB (optionnel).
adversaireNoNom adversaire pour filtrer les confrontations directes (action='calendrier').
date_debutNoDate début YYYY-MM-DD (action='calendrier').
organisme_idNoID FFBB du club (ex: '9326'). Requis si club_name absent.
engagement_idNoID FFBB de l'engagement (prioritaire pour désambiguïser).
force_refreshNoSi True, contourne le cache.
include_youthNoInclut les équipes jeunes si demande senior.
numero_equipeNoNuméro d'équipe (ex: 1, 2) pour action='calendrier' ou 'classement'.
status_filterNoFiltre statuts : scheduled, live, final.
competition_idNoID FFBB de la compétition pour désambiguïser.
strict_filtersNoFiltrage strict sans extrapolation (défaut True).
competition_typeNoType de compétition ('PLAT', 'COUPE', etc.) pour désambiguïser.
include_reservesNoInclut les réserves si demande équipe 1.
include_friendliesNoInclut les amicaux (exclus par défaut).
exclude_competition_typesNoTypes de compétition exclus (ex: ['PLAT']).
include_competition_typesNoTypes de compétition inclus (ex: ['DIV']).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed9 schema fields changedv1.15.0
    • addedInput schema / properties / exclude_competition_types
      Added value: +{
      +  "anyOf": [
      +    {
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Types de compétition exclus (ex: ['PLAT']).",
      +  "title": "Exclude Competition Types"
      +}
    • addedInput schema / properties / group_by
      Added value: +{
      +  "anyOf": [
      +    {
      +      "enum": [
      +        "competition",
      +        "team",
      +        "date"
      +      ],
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Regroupement : competition, team ou date.",
      +  "title": "Group By"
      +}
    • addedInput schema / properties / include_competition_types
      Added value: +{
      +  "anyOf": [
      +    {
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Types de compétition inclus (ex: ['DIV']).",
      +  "title": "Include Competition Types"
      +}
    • addedInput schema / properties / include_friendlies
      Added value: +{
      +  "default": false,
      +  "description": "Inclut les amicaux (exclus par défaut).",
      +  "title": "Include Friendlies",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / include_reserves
      Added value: +{
      +  "default": false,
      +  "description": "Inclut les réserves si demande équipe 1.",
      +  "title": "Include Reserves",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / include_youth
      Added value: +{
      +  "default": false,
      +  "description": "Inclut les équipes jeunes si demande senior.",
      +  "title": "Include Youth",
      +  "type": "boolean"
      +}
    • addedInput schema / properties / scope
      Added value: +{
      +  "anyOf": [
      +    {
      +      "enum": [
      +        "team",
      +        "club",
      +        "competition"
      +      ],
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Scope : 'team' (équipe résolue), 'club' (global club) ou 'competition'.",
      +  "title": "Scope"
      +}
    • addedInput schema / properties / status_filter
      Added value: +{
      +  "anyOf": [
      +    {
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Filtre statuts : scheduled, live, final.",
      +  "title": "Status Filter"
      +}
    • addedInput schema / properties / strict_filters
      Added value: +{
      +  "default": true,
      +  "description": "Filtrage strict sans extrapolation (défaut True).",
      +  "title": "Strict Filters",
      +  "type": "boolean"
      +}
  2. Changed14 schema fields changedv1.13.0
    • changedInput schema / anyOf
      Previous value: -[
      -  {
      -    "required": [
      -      "club_name"
      -    ]
      -  },
      -  {
      -    "required": [
      -      "organisme_id"
      -    ]
      -  },
      -  {
      -    "required": [
      -      "poule_id"
      -    ]
      -  }
      -]New value: +[
      +  {
      +    "required": [
      +      "organisme_id"
      +    ]
      +  },
      +  {
      +    "required": [
      +      "club_name"
      +    ]
      +  },
      +  {
      +    "required": [
      +      "poule_id"
      +    ]
      +  },
      +  {
      +    "required": [
      +      "engagement_id"
      +    ]
      +  },
      +  {
      +    "required": [
      +      "competition_id"
      +    ]
      +  }
      +]
    • addedInput schema / properties / action / default
      Added value: +"calendrier"
    • addedInput schema / properties / competition_id
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "integer"
      +    },
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "ID FFBB de la compétition pour désambiguïser.",
      +  "title": "Competition Id"
      +}
    • addedInput schema / properties / competition_type
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Type de compétition ('PLAT', 'COUPE', etc.) pour désambiguïser.",
      +  "title": "Competition Type"
      +}
    • addedInput schema / properties / engagement_id
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "integer"
      +    },
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "ID FFBB de l'engagement (prioritaire pour désambiguïser).",
      +  "title": "Engagement Id"
      +}
    • changedInput schema / properties / filtre / description
      Previous value: -"Filtre catégorie/genre (ex: 'U11M', 'Senior', 'NM3')."New value: +"Filtre catégorie/genre (alias pour 'categorie', ex: 'U11M', 'Senior', 'NM3')."
    • changedInput schema / properties / limit / anyOf
      Previous value: -[
      -  {
      -    "type": "integer"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "maximum": 100,
      +    "minimum": 1,
      +    "type": "integer"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • changedInput schema / properties / limit / description
      Previous value: -"Nombre max de matchs retournés (pagination)."New value: +"Nombre max de matchs retournés (1-100, pagination)."
    • addedInput schema / properties / offset
      Added value: +{
      +  "anyOf": [
      +    {
      +      "minimum": 0,
      +      "type": "integer"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Index de départ pour pagination calendrier (défaut 0).",
      +  "title": "Offset"
      +}
    • changedInput schema / properties / organisme_id / description
      Previous value: -"ID FFBB du club (ex: 9326). Requis si club_name absent."New value: +"ID FFBB du club (ex: '9326'). Requis si club_name absent."
    • changedInput schema / properties / poule_id / anyOf
      Previous value: -[
      -  {
      -    "type": "integer"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "type": "integer"
      +  },
      +  {
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • changedInput schema / properties / poule_id / description
      Previous value: -"ID poule (action='classement'). Optionnel si club et catégorie sont fournis."New value: +"ID poule (action='classement' ou 'calendrier'). Optionnel si club et catégorie sont fournis."
    • addedInput schema / properties / season_id
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "integer"
      +    },
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "ID de la saison FFBB (optionnel).",
      +  "title": "Season Id"
      +}
    • removedInput schema / required
      Removed value: -[
      -  "action"
      -]
  3. Changed4 schema fields changedv1.10.0
    • addedInput schema / properties / categorie
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Catégorie, division ou filtre d'équipe (alias pour 'filtre', ex: 'NM3', 'U15M', 'Senior').",
      +  "title": "Categorie"
      +}
    • changedInput schema / properties / filtre / description
      Previous value: -"Filtre catégorie/genre (ex: 'U11M', 'Senior')."New value: +"Filtre catégorie/genre (ex: 'U11M', 'Senior', 'NM3')."
    • changedInput schema / properties / numero_equipe / description
      Previous value: -"Numéro d'équipe (ex: 1, 2) pour action='calendrier'."New value: +"Numéro d'équipe (ex: 1, 2) pour action='calendrier' ou 'classement'."
    • changedInput schema / properties / poule_id / description
      Previous value: -"ID poule (action='classement')."New value: +"ID poule (action='classement'). Optionnel si club et catégorie sont fournis."
  4. Changed14 schema fields changedv1.9.0
    • addedInput schema / anyOf
      Added value: +[
      +  {
      +    "required": [
      +      "club_name"
      +    ]
      +  },
      +  {
      +    "required": [
      +      "organisme_id"
      +    ]
      +  },
      +  {
      +    "required": [
      +      "poule_id"
      +    ]
      +  }
      +]
    • changedInput schema / properties / action / description
      Previous value: -"Action club. Utiliser 'calendrier' pour les demandes au pluriel (matchs restants, calendrier, prochaines journées)."New value: +"Action : 'calendrier' (matchs pluriels/restants), 'equipes' ou 'classement'."
    • changedInput schema / properties / adversaire / description
      Previous value: -"Nom de l'équipe adversaire pour filtrer uniquement les confrontations directes (ex: 'Royat Orcines', 'Stade Clermontois'). Utilisé avec action='calendrier'. Insensible à la casse et aux accents."New value: +"Nom adversaire pour filtrer les confrontations directes (action='calendrier')."
    • changedInput schema / properties / club_name / description
      Previous value: -"Nom du club (recommande, ex: 'Stade Clermontois'). Si absent, `organisme_id` doit etre fourni."New value: +"Nom du club (ex: 'Stade Clermontois'). Requis si organisme_id absent."
    • changedInput schema / properties / date_debut / description
      Previous value: -"Date de début de filtrage au format YYYY-MM-DD (ex: '2026-05-01')."New value: +"Date début YYYY-MM-DD (action='calendrier')."
    • changedInput schema / properties / date_fin / description
      Previous value: -"Date de fin de filtrage au format YYYY-MM-DD (ex: '2026-05-31')."New value: +"Date fin YYYY-MM-DD (action='calendrier')."
    • changedInput schema / properties / filtre / description
      Previous value: -"Filtre facultatif de categorie/genre (ex: 'U11', 'U11M', 'U11F'). Pour une équipe précise, compléter avec numero_equipe."New value: +"Filtre catégorie/genre (ex: 'U11M', 'Senior')."
    • changedInput schema / properties / force_refresh / description
      Previous value: -"Si True, contourne le cache pour les donnees de calendrier ou de classement (utile les jours de match)."New value: +"Si True, contourne le cache."
    • changedInput schema / properties / limit / description
      Previous value: -"Nombre maximum de matchs de calendrier à retourner (pagination/limite)."New value: +"Nombre max de matchs retournés (pagination)."
    • changedInput schema / properties / numero_equipe / description
      Previous value: -"Numéro d'équipe facultatif (ex: 1, 2, 3). Utilisé avec action='calendrier' pour ne récupérer que les matchs de cette équipe précise."New value: +"Numéro d'équipe (ex: 1, 2) pour action='calendrier'."
    • changedInput schema / properties / organisme_id / description
      Previous value: -"Identifiant FFBB du club (ex: 1234 ou 'ARA0063058'). Si absent, `club_name` est utilise pour effectuer une recherche."New value: +"ID FFBB du club (ex: 9326). Requis si club_name absent."
    • changedInput schema / properties / phase / description
      Previous value: -"Nom ou numéro de la phase (ex: 'Phase 3', '2'). Utilisé avec action='classement' pour auto-résoudre la poule."New value: +"Nom ou numéro de phase (ex: 'Phase 2')."
    • changedInput schema / properties / poule_id / description
      Previous value: -"Identifiant de la poule (obligatoire pour action='classement' si aucun filtre ne permet de determiner la poule)."New value: +"ID poule (action='classement')."
    • changedOutput schema / (root)
      Previous value: -{
      -  "$defs": {
      -    "CalendrierMatch": {
      -      "description": "Structure de données typée représentant un match de calendrier.",
      -      "properties": {
      -        "adresse": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ],
      -          "default": null,
      -          "description": "Adresse complète de la salle.",
      -          "title": "Adresse"
      -        },
      -        "adresse_salle": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ],
      -          "default": null,
      -          "description": "Adresse de la salle.",
      -          "title": "Adresse Salle"
      -        },
      -        "competition_nom": {
      -          "default": "",
      -          "description": "Nom de la compétition associée.",
      -          "title": "Competition Nom",
      -          "type": "string"
      -        },
      -        "competition_type": {
      -          "default": "poule",
      -          "description": "Type de phase (poule ou élimination).",
      -          "title": "Competition Type",
      -          "type": "string"
      -        },
      -        "date": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ],
      -          "default": null,
      -          "description": "Date et heure du match en ISO format.",
      -          "title": "Date"
      -        },
      -        "equipe1": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ],
      -          "default": null,
      -          "description": "Nom de l'équipe 1 (domicile).",
      -          "title": "Equipe1"
      -        },
      -        "equipe2": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ],
      -          "default": null,
      -          "description": "Nom de l'équipe 2 (extérieur).",
      -          "title": "Equipe2"
      -        },
      -        "id": {
      -          "anyOf": [
      -            {
      -              "type": "integer"
      -            },
      -            {
      -              "type": "string"
      -            }
      -          ],
      -          "description": "ID unique de la rencontre.",
      -          "title": "Id"
      -        },
      -        "is_last_match": {
      -          "default": false,
      -          "description": "Indique s'il s'agit du dernier match joué.",
      -          "title": "Is Last Match",
      -          "type": "boolean"
      -        },
      -        "is_next_match": {
      -          "default": false,
      -          "description": "Indique s'il s'agit du prochain match à venir.",
      -          "title": "Is Next Match",
      -          "type": "boolean"
      -        },
      -        "joue": {
      -          "anyOf": [
      -            {
      -              "type": "integer"
      -            },
      -            {
      -              "type": "boolean"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ],
      -          "default": null,
      -          "description": "Indique si le match a été joué (1 ou True) ou non (0 ou False).",
      -          "title": "Joue"
      -        },
      -        "lieu_complet": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ],
      -          "default": null,
      -          "description": "Adresse formatée complète : 'Nom Salle - Adresse, CP Ville'.",
      -          "title": "Lieu Complet"
      -        },
      -        "nom_salle": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ],
      -          "default": null,
      -          "description": "Nom de la salle (libelle).",
      -          "title": "Nom Salle"
      -        },
      -        "num_journee": {
      -          "anyOf": [
      -            {
      -              "type": "integer"
      -            },
      -            {
      -              "type": "string"
      -            }
      -          ],
      -          "default": "",
      -          "description": "Numéro de la journée de championnat.",
      -          "title": "Num Journee"
      -        },
      -        "played": {
      -          "default": false,
      -          "description": "Indique si le match est déjà joué.",
      -          "title": "Played",
      -          "type": "boolean"
      -        },
      -        "salle": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "additionalProperties": true,
      -              "type": "object"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ],
      -          "default": null,
      -          "description": "Nom de la salle de sport ou dictionnaire d'informations.",
      -          "title": "Salle"
      -        },
      -        "salle_details": {
      -          "anyOf": [
      -            {
      -              "additionalProperties": true,
      -              "type": "object"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ],
      -          "default": null,
      -          "description": "Détails enrichis de la salle de sport.",
      -          "title": "Salle Details"
      -        },
      -        "score_equipe1": {
      -          "anyOf": [
      -            {
      -              "type": "integer"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ],
      -          "default": null,
      -          "description": "Score de l'équipe 1.",
      -          "title": "Score Equipe1"
      -        },
      -        "score_equipe2": {
      -          "anyOf": [
      -            {
      -              "type": "integer"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ],
      -          "default": null,
      -          "description": "Score de l'équipe 2.",
      -          "title": "Score Equipe2"
      -        },
      -        "ville": {
      -          "anyOf": [
      -            {
      -              "type": "string"
      -            },
      -            {
      -              "type": "null"
      -            }
      -          ],
      -          "default": null,
      -          "description": "Ville où se situe la salle.",
      -          "title": "Ville"
      -        }
      -      },
      -      "required": [
      -        "id"
      -      ],
      -      "title": "CalendrierMatch",
      -      "type": "object"
      -    }
      -  },
      -  "properties": {
      -    "result": {
      -      "anyOf": [
      -        {
      -          "items": {
      -            "additionalProperties": true,
      -            "type": "object"
      -          },
      -          "type": "array"
      -        },
      -        {
      -          "items": {
      -            "$ref": "#/$defs/CalendrierMatch"
      -          },
      -          "type": "array"
      -        }
      -      ],
      -      "title": "Result"
      -    }
      -  },
      -  "required": [
      -    "result"
      -  ],
      -  "title": "ffbb_clubOutput",
      -  "type": "object"
      -}New value: +null
  5. Changed6 schema fields changedv1.5.1
    • addedInput schema / properties / adversaire
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Nom de l'équipe adversaire pour filtrer uniquement les confrontations directes (ex: 'Royat Orcines', 'Stade Clermontois'). Utilisé avec action='calendrier'. Insensible à la casse et aux accents.",
      +  "title": "Adversaire"
      +}
    • changedInput schema / properties / organisme_id / anyOf
      Previous value: -[
      -  {
      -    "type": "integer"
      -  },
      -  {
      -    "type": "null"
      -  }
      -]New value: +[
      +  {
      +    "type": "integer"
      +  },
      +  {
      +    "type": "string"
      +  },
      +  {
      +    "type": "null"
      +  }
      +]
    • changedInput schema / properties / organisme_id / description
      Previous value: -"Identifiant FFBB du club. Si absent, `club_name` est utilise pour effectuer une recherche."New value: +"Identifiant FFBB du club (ex: 1234 ou 'ARA0063058'). Si absent, `club_name` est utilise pour effectuer une recherche."
    • addedOutput schema / $defs / CalendrierMatch / properties / competition_type
      Added value: +{
      +  "default": "poule",
      +  "description": "Type de phase (poule ou élimination).",
      +  "title": "Competition Type",
      +  "type": "string"
      +}
    • addedOutput schema / $defs / CalendrierMatch / properties / lieu_complet
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Adresse formatée complète : 'Nom Salle - Adresse, CP Ville'.",
      +  "title": "Lieu Complet"
      +}
    • addedOutput schema / $defs / CalendrierMatch / properties / nom_salle
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Nom de la salle (libelle).",
      +  "title": "Nom Salle"
      +}
  6. Changed7 schema fields changedv1.4.0
    • addedInput schema / properties / date_debut
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Date de début de filtrage au format YYYY-MM-DD (ex: '2026-05-01').",
      +  "title": "Date Debut"
      +}
    • addedInput schema / properties / date_fin
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "string"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Date de fin de filtrage au format YYYY-MM-DD (ex: '2026-05-31').",
      +  "title": "Date Fin"
      +}
    • addedInput schema / properties / limit
      Added value: +{
      +  "anyOf": [
      +    {
      +      "type": "integer"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "default": null,
      +  "description": "Nombre maximum de matchs de calendrier à retourner (pagination/limite).",
      +  "title": "Limit"
      +}
    • addedOutput schema / $defs
      Added value: +{
      +  "CalendrierMatch": {
      +    "description": "Structure de données typée représentant un match de calendrier.",
      +    "properties": {
      +      "adresse": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Adresse complète de la salle.",
      +        "title": "Adresse"
      +      },
      +      "adresse_salle": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Adresse de la salle.",
      +        "title": "Adresse Salle"
      +      },
      +      "competition_nom": {
      +        "default": "",
      +        "description": "Nom de la compétition associée.",
      +        "title": "Competition Nom",
      +        "type": "string"
      +      },
      +      "date": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Date et heure du match en ISO format.",
      +        "title": "Date"
      +      },
      +      "equipe1": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Nom de l'équipe 1 (domicile).",
      +        "title": "Equipe1"
      +      },
      +      "equipe2": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Nom de l'équipe 2 (extérieur).",
      +        "title": "Equipe2"
      +      },
      +      "id": {
      +        "anyOf": [
      +          {
      +            "type": "integer"
      +          },
      +          {
      +            "type": "string"
      +          }
      +        ],
      +        "description": "ID unique de la rencontre.",
      +        "title": "Id"
      +      },
      +      "is_last_match": {
      +        "default": false,
      +        "description": "Indique s'il s'agit du dernier match joué.",
      +        "title": "Is Last Match",
      +        "type": "boolean"
      +      },
      +      "is_next_match": {
      +        "default": false,
      +        "description": "Indique s'il s'agit du prochain match à venir.",
      +        "title": "Is Next Match",
      +        "type": "boolean"
      +      },
      +      "joue": {
      +        "anyOf": [
      +          {
      +            "type": "integer"
      +          },
      +          {
      +            "type": "boolean"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Indique si le match a été joué (1 ou True) ou non (0 ou False).",
      +        "title": "Joue"
      +      },
      +      "num_journee": {
      +        "anyOf": [
      +          {
      +            "type": "integer"
      +          },
      +          {
      +            "type": "string"
      +          }
      +        ],
      +        "default": "",
      +        "description": "Numéro de la journée de championnat.",
      +        "title": "Num Journee"
      +      },
      +      "played": {
      +        "default": false,
      +        "description": "Indique si le match est déjà joué.",
      +        "title": "Played",
      +        "type": "boolean"
      +      },
      +      "salle": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "additionalProperties": true,
      +            "type": "object"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Nom de la salle de sport ou dictionnaire d'informations.",
      +        "title": "Salle"
      +      },
      +      "salle_details": {
      +        "anyOf": [
      +          {
      +            "additionalProperties": true,
      +            "type": "object"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Détails enrichis de la salle de sport.",
      +        "title": "Salle Details"
      +      },
      +      "score_equipe1": {
      +        "anyOf": [
      +          {
      +            "type": "integer"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Score de l'équipe 1.",
      +        "title": "Score Equipe1"
      +      },
      +      "score_equipe2": {
      +        "anyOf": [
      +          {
      +            "type": "integer"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Score de l'équipe 2.",
      +        "title": "Score Equipe2"
      +      },
      +      "ville": {
      +        "anyOf": [
      +          {
      +            "type": "string"
      +          },
      +          {
      +            "type": "null"
      +          }
      +        ],
      +        "default": null,
      +        "description": "Ville où se situe la salle.",
      +        "title": "Ville"
      +      }
      +    },
      +    "required": [
      +      "id"
      +    ],
      +    "title": "CalendrierMatch",
      +    "type": "object"
      +  }
      +}
    • addedOutput schema / properties / result / anyOf
      Added value: +[
      +  {
      +    "items": {
      +      "additionalProperties": true,
      +      "type": "object"
      +    },
      +    "type": "array"
      +  },
      +  {
      +    "items": {
      +      "$ref": "#/$defs/CalendrierMatch"
      +    },
      +    "type": "array"
      +  }
      +]
    • removedOutput schema / properties / result / items
      Removed value: -{
      -  "additionalProperties": true,
      -  "type": "object"
      -}
    • removedOutput schema / properties / result / type
      Removed value: -"array"
  7. Addedv1.3.2
  8. Removedv1.3.1
  9. Addedv1.2.0

TDQS

A4/5.0
Behavior4/5

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

Annotations already cover the safety profile (readOnlyHint=true, idempotentHint=true, destructiveHint=false), so the description is not required to repeat those. It adds useful behavioral context by stating that the tool aggregates calendar, teams, and standings, and that it resolves division labels like NM3/PNM to the correct team.

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 compact and front-loaded: it lists the core actions in the first sentence and then gives routing and disambiguation guidance in the second. There is slight redundancy with the title ('Outils agrégés club'), but no major wasted wording.

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?

For a 27-parameter tool with no output schema, the description is relatively thin. It gives good routing context and disambiguation, but it does not mention the identifier requirement (one of organisme_id, club_name, poule_id, engagement_id, or competition_id) or how to choose between the three actions beyond their names. The schema fills most gaps, but the description alone is not fully sufficient.

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%, so the baseline of 3 applies: every parameter is already documented in the schema. The description adds only minimal extra parameter semantics beyond the schema, mainly the resolution hint for category/division names like NM3/PNM.

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 identifies a club-level aggregate tool with three concrete outputs: calendrier (matchs pluriels), équipes engagées, and classement. It also differentiates itself from singular-match siblings by positioning itself as 'Outil de référence pour toute demande au pluriel' and adds disambiguation behavior ('Résout NM3, PNM, etc. vers la bonne équipe').

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 explicitly routes plural/cumulative requests to this tool ('toute demande au pluriel : matchs restants, calendrier complet'), so an agent knows when to reach for it. It does not explicitly name sibling exclusions, but the singular/plural framing is a clear enough contextual signal.

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