Skip to main content
Glama
nickdesi

FFBB MCP Server

by nickdesi

Outils agrégés club

ffbb_club
Read-onlyIdempotent

Retrieve club schedules, engaged teams, or standings for French basketball competitions. Filter match lists by opponent, phase, or date range to get direct confrontations or remaining matches.

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. Utiliser adversaire avec action='calendrier' pour isoler les confrontations directes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoNombre max de matchs retournés (pagination).
phaseNoNom ou numéro de phase (ex: 'Phase 2').
actionYesAction : 'calendrier' (matchs pluriels/restants), 'equipes' ou 'classement'.
filtreNoFiltre catégorie/genre (ex: 'U11M', 'Senior').
date_finNoDate fin YYYY-MM-DD (action='calendrier').
poule_idNoID poule (action='classement').
club_nameNoNom du club (ex: 'Stade Clermontois'). Requis si organisme_id absent.
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.
force_refreshNoSi True, contourne le cache.
numero_equipeNoNuméro d'équipe (ex: 1, 2) pour action='calendrier'.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 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
  2. 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"
      +}
  3. 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"
  4. Addedv1.3.2
  5. Removedv1.3.1
  6. Addedv1.2.0

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds behavioral context beyond the annotations by clarifying that this tool returns plural/aggregated data (matchs pluriels, calendrier complet) and supports head-to-head filtering with the adversaire parameter.

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 and front-loaded: the first line states the resource and actions, the second gives the primary use case, and the third gives a specific parameter guidance. Every sentence earns its place with no redundant filler.

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?

For a multi-action tool with 12 parameters, the description gives enough context to select it and understand its three main modes. The schema covers parameter-level details, and the annotations cover safety. A short note on expected return shape would improve it, but the current level is sufficient for correct invocation.

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 schema already documents every parameter. The description reinforces the usage of adversaire with action='calendrier' for direct confrontations, but this is also stated in the adversaire parameter description, so the added value is marginal.

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 names a specific resource (club) and the three concrete operations: calendrier, équipes, classement. It also defines a clear scope — 'toute demande au pluriel' (remaining matches, full calendar) — which distinguishes it from singular sibling tools like ffbb_next_match and ffbb_last_result.

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 states when to use the tool: 'Outil de référence pour toute demande au pluriel : matchs restants, calendrier complet.' It also gives a specific usage pattern (adversaire avec action='calendrier') for direct confrontations. However, it does not explicitly name sibling alternatives or state when not to use this tool.

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

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/nickdesi/FFBB-MCP-Server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server