search_fpl_players
Search Fantasy Premier League players by name, with optional filters for position, team, and result limit. Retrieve detailed player information for effective FPL team management.
Instructions
Search for FPL players by name with optional filtering
Args:
query: Player name or partial name to search for
position: Optional position filter (GKP, DEF, MID, FWD)
team: Optional team name filter
limit: Maximum number of results to return
Returns:
List of matching players with details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
position | No | ||
query | Yes | ||
team | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 5,
"title": "Limit",
"type": "integer"
},
"position": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Position"
},
"query": {
"title": "Query",
"type": "string"
},
"team": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Team"
}
},
"required": [
"query"
],
"title": "search_fpl_playersArguments",
"type": "object"
}