Skip to main content
Glama

List Space Cards

kaiten_get_space_cards
Read-onlyIdempotent

Retrieve recent cards from a Kaiten space, ordered newest first, with optional pagination and verbosity settings. Use to view current board activity without filters.

Instructions

Recent cards in a space (newest first, no filters). For filtered search use kaiten_search_cards.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMax results
offsetNoOffset for pagination
spaceIdYesSpace ID (from kaiten_list_spaces)
conditionNoCard condition filter. 1=live (on board, default), 2=archived. Kaiten does not support a filter for both in one call — omit (defaults to live) or query twice and merge. Note: passing 3 was historically described as 'all' but actually returns deleted cards only — the schema now rejects 3 to prevent silent empty results.
verbosityNoDetail: raw|min(default)|normal|maxmin

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.7

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already cover safety (readOnly, idempotent, non-destructive), so the description only needs to add behavior. It adds the newest-first ordering and no-filter scope. It does not mention the condition filter default or pagination behavior, but those are documented in the schema; 'no filters' is a slight simplification of the condition parameter but not an annotation contradiction.

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?

Two short sentences with the key behavior front-loaded and the alternative in the second sentence. No redundant material.

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?

Given the rich schema (all five parameters documented) and safety annotations, the description supplies the remaining selection context: ordering, scope, absence of search filters, and the sibling to use when filtering is required. Nothing essential is missing for invoking the tool correctly.

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 carries parameter documentation. The description adds no parameter-level detail beyond the 'no filters' framing, which is usage guidance rather than parameter semantics; baseline 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 states a specific verb-resource pair ('cards in a space'), the ordering ('newest first'), and an explicit exclusion ('no filters'), which lets the agent distinguish this from kaiten_search_cards and kaiten_get_board_cards without opening the schema.

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?

It explicitly says when this tool is appropriate ('recent cards... no filters') and names the alternative for the filtered case ('For filtered search use kaiten_search_cards'). This gives clear selection guidance.

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