Skip to main content
Glama
surewht

ti4-mcp

by surewht

list_planets

Retrieve Twilight Imperium 4 planets, filtering by trait, tech specialty, or active expansions to support game setup and strategy.

Instructions

List TI4 planets, optionally filtered by trait or tech specialty.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
traitNoFilter by planet trait
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
tech_specialtyNoFilter by tech specialty

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.3/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 behavioral burden. Beyond confirming this is a listing operation, it discloses nothing about the expansions parameter, the game-context default behavior (documented only in the schema), or what the returned planet records contain.

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?

A single front-loaded sentence with zero filler. The core action and its optional modifiers are stated immediately.

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

Completeness3/5

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

For a three-parameter list tool with no annotations and no output schema, the description is thin: it omits the expansions parameter entirely (the one whose default depends on game context) and says nothing about the shape of results. Adequate but with clear 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 description coverage is 100%, so the schema already documents trait, expansions, and tech_specialty, including enum values and the game-context default. The description restates only two of the three filters and adds no syntax or format detail, 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?

Specific verb+resource (list TI4 planets) with the filtering scope stated. It implicitly distinguishes itself from the singular sibling get_planet, but does not explicitly name 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?

"Optionally filtered by trait or tech specialty" implies the tool's filtering use case, but there is no explicit when-to-use guidance or routing versus get_planet, get_system, or search.

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