Skip to main content
Glama
surewht

ti4-mcp

by surewht

get_system

Look up a Twilight Imperium 4 system tile by tile number to get its planets, wormholes, anomalies, and home-system faction.

Instructions

Get a TI4 system tile by tile number. Returns planets, wormholes, anomalies, and faction if home system.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tile_numberYesSystem tile number, e.g. '1', '18', '42'

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the full burden, and it does disclose the payload contents (planets, wormholes, anomalies, faction for home systems). However, it says nothing about read-only safety, error behavior for invalid tile numbers, or any other operational trait.

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 tight sentences, the action and lookup key are front-loaded, and the second sentence efficiently enumerates the returned fields. No wasted words.

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 single-parameter read lookup with no output schema, the brief inventory of returned fields is enough for an agent to know what comes back. Missing only minor operational details like invalid-input handling.

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% and the tile_number parameter is documented with examples in the schema, so the description's 'by tile number' phrasing adds nothing beyond structured data. Baseline 3 applies when the schema does the heavy lifting.

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?

States a specific verb (Get) and resource (TI4 system tile) with the lookup key (tile number), which cleanly separates it from sibling planet/faction retrievers like get_planet and get_faction. An agent can identify the tool's scope 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 Guidelines3/5

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

The description implies usage (look up a system tile when you have a tile number) but never states when to prefer this over get_planet/list_planets or any other alternative. No conditions, prerequisites, or exclusions are given.

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