Skip to main content
Glama
surewht

ti4-mcp

by surewht

get_agenda

Retrieve a specific Twilight Imperium 4 agenda card by ID, with optional expansion filters to match the active game context.

Instructions

Get a specific TI4 agenda card by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agenda_idYesAgenda identifier
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

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full disclosure burden, yet it only implies a read lookup. It says nothing about error behavior for an unknown ID, whether expansions filter or only widen results, or the shape of the returned card.

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 filler. It is efficient, though arguably under-specified rather than maximally concise.

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 one-item lookup with 100% schema coverage and no output schema, the description covers the essentials. It omits only the expansions interaction and error behavior for a missing ID, which are minor gaps.

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 coverage is 100%, so both parameters (agenda_id, expansions) are already documented in the schema, including the expansion fallback default. The description's 'by ID' adds only marginal framing beyond that, matching the baseline 3 when the schema does the work.

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 ('Get') and resource ('TI4 agenda card') and scopes it to a single item via 'by ID', which implicitly separates it from list_agendas. It's clear but never explicitly names or contrasts with the sibling list tool.

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

Usage Guidelines2/5

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

No when-to-use guidance beyond the implied 'you need an ID' reading. It never points to list_agendas for discovery or search for lookup by name, leaving the agent to infer the routing condition.

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