analyze_players
Filter Fantasy Premier League players by position, team, price, points, ownership, and form. Get summary statistics and gameweek data to make informed decisions.
Instructions
Filter and analyze FPL players based on multiple criteria
Args:
position: Player position (e.g., "midfielders", "defenders")
team: Team name filter
min_price: Minimum player price in millions
max_price: Maximum player price in millions
min_points: Minimum total points
min_ownership: Minimum ownership percentage
max_ownership: Maximum ownership percentage
form_threshold: Minimum form rating
include_gameweeks: Whether to include gameweek-by-gameweek data
num_gameweeks: Number of recent gameweeks to include
sort_by: Metric to sort results by (default: total_points)
sort_order: Sort direction ("asc" or "desc")
limit: Maximum number of players to return
Returns:
Filtered player data with summary statisticsInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
| position | No | ||
| team | No | ||
| min_price | No | ||
| max_price | No | ||
| min_points | No | ||
| min_ownership | No | ||
| max_ownership | No | ||
| form_threshold | No | ||
| include_gameweeks | No | ||
| num_gameweeks | No | ||
| sort_by | No | total_points | |
| sort_order | No | desc | |
| limit | No |