Skip to main content
Glama

Read a card stack

get-card-stack
Read-onlyIdempotent

Read a card stack by ID or exact name and get its ordered cards, including name, suit, value, drawn state, text, image, and origin.

Instructions

Read one card stack with its cards in order: name, suit, value, drawn, text, image and origin.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
stackIdYesThe stack: id or exact name of the card stack
includeDrawnNoInclude drawn cards of a deck (default true)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv14.2609.4

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds value by disclosing that cards are returned in order and enumerating the specific card fields (name, suit, value, drawn, text, image, origin), which is useful behavioral 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 a single, front-loaded sentence that states the operation, scope, ordering, and output fields without any wasted words. Every part of the sentence contributes useful information.

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 simple read-only tool with two schema-documented parameters and strong annotations, the description covers the output structure and ordering. No additional return-format or side-effect guidance is needed given the annotations and schema.

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%, so the schema already documents stackId and includeDrawn with clear meaning and defaults. The description does not add parameter-specific semantics beyond the schema, so the baseline score of 3 is appropriate.

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 uses a specific verb ('Read') and a precise resource ('one card stack') and clarifies that it returns the stack's cards in order with named fields. This clearly distinguishes it from sibling tools like list-card-stacks (which lists stacks) and draw-cards (which modifies a stack by drawing from it).

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

Usage Guidelines3/5

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

The description implies usage for reading a single card stack's contents, but it does not explicitly state when to prefer this tool over alternatives such as list-card-stacks or draw-cards. No exclusions or alternative tool mentions are provided, leaving the agent to infer the appropriate selection context.

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

Deploy Server

Other Tools