Skip to main content
Glama
surewht

ti4-mcp

by surewht

get_objective

Retrieve a specific Twilight Imperium 4 objective by ID to check its scoring conditions, with optional expansion filtering.

Instructions

Get a specific TI4 objective by ID.

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
objective_idYesObjective identifier

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 behavioral burden. It doesn't say whether this is read-only (though the word 'Get' strongly implies it), what happens with an unknown ID, whether the return is localized, or whether expansions affect resolution.

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 efficient sentence with no waste, front-loading the verb and resource.

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?

Adequate for a simple two-param lookup with full schema coverage and no output schema, but with no annotations it should at least clarify read-only behavior and ID acquisition from list_objectives.

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 baseline is 3. The description adds only that the lookup is by ID; it does not elaborate on objective_id syntax, expansion interplay, or the omitted-expansions-default behavior beyond what the schema already documents.

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?

Clear verb+resource: 'Get a specific TI4 objective by ID.' It distinguishes this lookup from its obvious sibling list_objectives, though it doesn't name the alternative explicitly. It is specific enough for an agent to know what the tool retrieves.

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 or when-not-to-use guidance, and no exclusion of alternatives. The description does not state that list_objectives should be used to discover IDs before calling this lookup.

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