Skip to main content
Glama
akiraKido

Unity Build Automation MCP

by akiraKido

List Build Targets

list_build_targets
Read-only

List build targets for a Unity project to check available configurations, defaulting to the configured default project.

Instructions

List build targets for a project. Defaults to the configured default project.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectNoProject ID or name (defaults to the configured default project)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.2

TDQS

A3.6/5.0
Behavior3/5

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

The readOnlyHint=true annotation already establishes this as a safe read. The description adds the useful default-project fallback behavior, but says nothing about result shape, ordering, or empty-result handling.

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 short sentences with zero padding, and the core action is front-loaded before the default behavior note. Every sentence earns its place.

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 one-optional-parameter, read-only list tool with no output schema and full schema coverage, the description covers what an agent needs. It is slightly thin on how 'build targets' differ from builds, but nothing critical is missing.

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 single 'project' parameter is fully documented in the schema, including the default behavior. The description merely restates that default, adding no format or resolution detail beyond the schema.

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+resource ('List build targets') scoped to a project, which is clear enough to separate from list_projects and list_builds. It does not explicitly name the sibling it is not, so the differentiation is left partly to inference.

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 notes the default project behavior, which implies when the argument can be omitted, but it gives no explicit guidance on when to use this tool versus list_builds or get_build. Usage is implied rather than stated.

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