Skip to main content
Glama

tenki_list_active_template_builds

Read-onlyIdempotent

List active in-progress builds for a template ID to track running sandbox deployments and manage ongoing build processes.

Instructions

List the currently active (in-progress) builds for a given template.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
template_idYesThe template ID whose active builds to list.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A3.6/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the agent knows it is a safe read operation. The description adds the 'in-progress' qualifier, which clarifies scope, but does not disclose other behaviors like return format or pagination. With strong annotation coverage, the description adds modest value beyond the structured metadata.

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?

The description is a single, front-loaded sentence with no redundant words. It clearly conveys the action and scope without unnecessary detail, making it appropriately concise for a simple tool.

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 read-only list tool with one well-documented parameter and no output schema, the description is sufficient. It could optionally hint at the return structure (e.g., list of builds with details), but this is not essential given the tool's simplicity and annotation coverage.

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 parameter description already explains template_id. The tool description does not add any additional meaning beyond the schema, so it remains at the baseline for well-covered parameters.

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?

The description states a specific action (list) on a specific resource (active builds) scoped by template_id. It is distinct from siblings like get_template_build but does not explicitly differentiate itself; however, the resource type is unique enough that an agent can infer the purpose.

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 gives clear context that the tool lists in-progress builds for a template, but it provides no explicit guidance on when to use it versus alternatives such as get_template_build or build_template. 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.

Deploy Server

Other Tools