Get a Riftbound decklist
piltover_get_deckFetch a deck by ID to get its full contents, resolving card UUIDs into readable names, types, costs, and colours. Set resolve_cards=false for raw IDs.
Instructions
Fetch one deck by ID and return its full contents.
The API stores deck contents as bare card UUIDs, so by default this tool resolves every one of them into card names, types, costs and colours — that resolution is the point of the tool, and it costs a few extra requests. Set resolve_cards=false for the raw id form.
Sections returned: champions, battlefields, runes, main deck, sideboard, bench.
Args:
deck_id: the deck UUID, as returned by piltover_search_decks
resolve_cards: resolve card UUIDs to names (default true)
response_format: 'markdown' (default) or 'json'
Examples:
"What's in deck ae198cdf-…?" -> { deck_id: "ae198cdf-…" }
Don't use when: you only need deck metadata for many decks — piltover_search_decks already returns that.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| deck_id | Yes | Deck UUID, from piltover_search_decks. | |
| resolve_cards | No | Resolve card UUIDs into card names and stats. | |
| response_format | No | markdown for reading, json for further processing. | markdown |