Search Riftbound decks
piltover_search_decksSearch public decklists to find how a champion or archetype is built and what the community is playing. Returns deck summaries with IDs for retrieving full card lists.
Instructions
Search public decklists published on Piltover Archive.
Useful for seeing how a champion or archetype is actually built, and what the community is playing right now.
Args:
q: free-text across deck name, description and legend name, so a champion name finds decks led by that champion even when the title never says it
sort: field to order by, e.g. likes, views, createdAt (pair with dir)
dir: 'asc' or 'desc'
page, limit: pagination (limit max 100)
response_format: 'markdown' (default) or 'json'
Examples:
"Popular Akali decks" -> { q: "Akali", sort: "likes", dir: "desc" }
"Newest decks" -> { sort: "createdAt", dir: "desc" }
Returns deck summaries including a deck ID; pass that to piltover_get_deck for the full card list.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Free-text search across deck name, description and legend name. | |
| dir | No | Sort direction. Requires `sort`. | |
| page | No | 1-based page number. | |
| sort | No | Field to sort by, e.g. likes, views, createdAt. | |
| limit | No | Results per page (max 100). | |
| response_format | No | markdown for reading, json for further processing. | markdown |