get_league_standings
Retrieve Fantasy Premier League standings and team details by providing a specific league ID. Access league information for analysis and comparison using the FPL MCP Server.
Instructions
Get standings for a specified FPL league
Args:
league_id: ID of the league to fetch
Returns:
League information with standings and team details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
league_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"league_id": {
"title": "League Id",
"type": "integer"
}
},
"required": [
"league_id"
],
"title": "get_league_standingsArguments",
"type": "object"
}