Skip to main content
Glama

List Kits

list_kits
Read-onlyIdempotent

List the 12 themed kits with pricing and member products. FREE.

Takes no arguments. Returns a list of kit objects, each {"slug": ..., "name": ..., "price_usd": N, "tagline": ..., "members": ["product-slug", ...], "availability": ...}. Use a kit's slug with get_full_kit (premium). Kits are not sold standalone on any marketplace: price_usd is the bundle's reference value, and All-Access is how a caller actually unlocks one.

Use when the caller asks about bundles or bundle pricing. Not for individual products (search_catalog) and not for a kit's full contents (get_full_kit). Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""}. Every call is read-only and idempotent, so after correcting the input it is always safe to retry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

TDQS

A4.9/5.0
Behavior5/5

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

Beyond the readOnly, idempotent, and non-destructive annotations, the description discloses the error behavior (returns an error object rather than raising a protocol error), the fact that kits are not sold standalone, and that All-Access is how a caller actually unlocks a kit. This adds meaningful operational context beyond the annotations.

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?

The description is front-loaded with the core purpose, then provides return shape, usage routing, error behavior, and safety in a logical order. Every sentence adds necessary information; there is no filler or repetition of schema content.

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 zero-parameter read-only listing tool, the description is complete: it covers the exact output shape, subscription semantics, when to use it, which siblings to use instead, error behavior, and retry safety. The output schema and annotations further support completeness.

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

Parameters4/5

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

The tool has zero parameters, so the baseline is 4. The description reinforces this with 'Takes no arguments' and goes further to explain that even malformed input is handled gracefully via an error object. Nothing more is needed.

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?

The description names a specific verb and resource: 'List the 12 themed kits with pricing and member products.' It also explicitly distinguishes itself from get_full_kit and search_catalog, so an agent can select it without confusion.

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?

The description gives direct usage guidance: 'Use when the caller asks about bundles or bundle pricing' and explicitly says what not to use it for, naming search_catalog for individual products and get_full_kit for full kit contents. It also states that retrying is safe after correction.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.7/5.0
Disambiguation4/5

The tools are mostly distinct, but the four get_full_* tools (kit, persona, product, skill) share a similar naming pattern and could be confused. Descriptions clarify the different payloads, so an agent can select correctly with careful reading.

Naming Consistency5/5

All tool names follow a consistent lowercase snake_case verb_noun pattern (get_free_skill, list_kits, search_catalog, etc.). The verbs vary by action but the structure is uniform and predictable.

Tool Count5/5

10 tools cover catalog search, recommendation, preview, and tiered content retrieval. This is well-scoped for a product catalog server, neither too few nor too many.

Completeness4/5

The surface covers browsing, searching, recommending, previewing, and retrieving free/full content, plus upgrade info. Minor gap: per-product pricing is not available except for kits, so agents cannot quote individual product prices directly.

Resources