Skip to main content
Glama
Liaxum

piltover-archive

by Liaxum

List Riftbound sets

piltover_list_sets
Read-onlyIdempotent

List all Riftbound card sets with prefixes and release dates. Use prefixes to filter cards in searches.

Instructions

List every Riftbound card set, with its prefix and release date.

Set prefixes (e.g. OGN, ARC) are what the sets filter of piltover_search_cards expects, so call this first when a question names a set in words ("the Arcane box") rather than by prefix.

Args:

  • response_format: 'markdown' (default) or 'json'

Examples:

  • "What Riftbound sets exist?" -> {}

  • "What's the prefix for Origins?" -> {} then read the table

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
response_formatNomarkdown for reading, json for further processing.markdown

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint and destructiveHint=false, so the safety profile is covered. The description adds genuine behavioral context beyond that: the shape of the returned data (prefix + release date) and the response_format tradeoff for downstream processing. It does not mention pagination or ordering, so it isn't fully exhaustive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loads the core purpose, then adds the cross-tool rationale, args, and short examples. Every block earns its place and there is no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-optional-param, no-output-schema tool, the description supplies what the return contains (prefix, release date), the routing rationale, and the format options. Nothing an agent needs to call it correctly is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% and there is only one enum-constrained parameter, so the schema already documents response_format. The description restates the 'markdown (default) or json' options without adding format-specific meaning beyond the existing enum description — baseline 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a precise verb+resource ('List every Riftbound card set') and specifies the returned fields (prefix and release date). It also differentiates itself from the sibling piltover_search_cards by explaining that its prefixes feed that tool's `sets` filter.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Gives an explicit trigger condition: call this first when a question names a set in words rather than by prefix. The worked examples ('What's the prefix for Origins?' -> {} then read the table) reinforce exactly when and how to invoke it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.