Skip to main content
Glama
surewht

ti4-mcp

by surewht

list_action_cards

Retrieve TI4 action cards by play timing keyword, such as combat or agenda, and filter by active expansions for game-specific results.

Instructions

List TI4 action cards, optionally filtered by play timing keyword.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
expansionsNoActive expansions. If omitted, uses game context or defaults to base game. Options: base, pok, codex-1, codex-2, codex-3, codex-4, thunders-edge
timing_keywordNoFilter by play timing keyword (e.g. 'combat', 'agenda', 'tactical')

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.5/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden. It discloses that filtering is optional (i.e., omitting the filter returns all cards), which is genuine behavioral context, but omits return format, pagination, and whether expansions default to game context.

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

Conciseness4/5

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

A single front-loaded sentence with no wasted words, naming the resource first and the optional filter second. Efficient and easy to scan.

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

Completeness4/5

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

For a simple two-parameter list tool with full schema coverage and no output schema, the description is sufficient to call it correctly. The only minor gap is no mention of the expansions parameter, though the schema covers it.

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 both parameters are already fully documented in the schema. The description reinforces the timing_keyword filter but adds no syntax or format detail beyond what the schema states, so baseline 3 applies.

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

Purpose4/5

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

States a specific verb ('List') and resource ('TI4 action cards'), and the verb naturally distinguishes it from the sibling get_action_card (singular retrieve). It stops short of explicitly contrasting with that sibling, so it is clear but not fully differentiated.

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 phrase 'optionally filtered by play timing keyword' implies when to supply the filter, which is useful. However, there is no explicit guidance on when to use this list tool versus get_action_card or the other list_* tools, leaving routing to inference.

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