Tool tree
Padel scores, player rankings, and tournament information from Premier Padel and the FIP Tour.
get_live_scoresAnswer
Get current live, scheduled, and completed padel matches with scores, courts, and tournament stages.
View tool JSON
{
"name": "get_live_scores",
"kind": "answer",
"impl": "imperative",
"description": "Get current live, scheduled, and completed padel matches with scores, courts, and tournament stages.",
"inputSchema": {
"type": "object",
"properties": {
"status": {
"enum": [
"all",
"live",
"scheduled",
"finished"
],
"type": "string",
"description": "Filter matches by status (default all)"
}
},
"additionalProperties": false
},
"page": "/welcome"
}get_player_rankingsAnswer
Get official padel player rankings, points, and categories for men and women.
View tool JSON
{
"name": "get_player_rankings",
"kind": "answer",
"impl": "imperative",
"description": "Get official padel player rankings, points, and categories for men and women.",
"inputSchema": {
"type": "object",
"properties": {
"limit": {
"type": "integer",
"description": "Maximum number of players to return (default 20)"
},
"category": {
"enum": [
"men",
"women"
],
"type": "string",
"description": "Ranking category (default men)"
}
},
"additionalProperties": false
},
"page": "/welcome"
}list_tournamentsAnswer
List padel tournaments and events from Premier Padel and FIP Tour.
View tool JSON
{
"name": "list_tournaments",
"kind": "answer",
"impl": "imperative",
"description": "List padel tournaments and events from Premier Padel and FIP Tour.",
"inputSchema": {
"type": "object",
"properties": {
"circuit": {
"enum": [
"all",
"premier_padel",
"fip"
],
"type": "string",
"description": "Filter by tournament circuit (default all)"
}
},
"additionalProperties": false
},
"page": "/welcome"
}search_padelAnswer
Search players, tournaments, and matches across Padel Nachos by keyword.
View tool JSON
{
"name": "search_padel",
"kind": "answer",
"impl": "imperative",
"description": "Search players, tournaments, and matches across Padel Nachos by keyword.",
"inputSchema": {
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "Search keyword for player, tournament, or match (e.g. Chingotto, Galan, Paris)"
}
},
"additionalProperties": false
},
"page": "/welcome"
}view_padel_detailsAction
Navigate to a specific padel match, player profile, or tournament page on Padel Nachos.
View tool JSON
{
"name": "view_padel_details",
"kind": "act",
"impl": "imperative",
"description": "Navigate to a specific padel match, player profile, or tournament page on Padel Nachos.",
"inputSchema": {
"type": "object",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"description": "Relative or absolute URL of the match, player, or tournament page to view"
}
},
"additionalProperties": false
},
"page": "/welcome"
}