Skip to main content
Glama
vlhommeau
by vlhommeau

Get build jobs

get_build_jobs
Read-only

Retrieve jobs of a Travis build with their state and stage to identify which job failed.

Instructions

Jobs of one Travis build with their state and stage, to find which job failed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
build_idYesTravis build ID, the number in .../builds/<id> URLs

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.1

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, and destructiveHint=false, covering the safety profile. The description adds the purpose and scope (jobs of one build) but does not disclose additional behavioral details like return format, pagination, or rate limits. With annotations covering the safety aspect, a 3 is appropriate – the description adds some value but not rich behavioral context.

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 sentence that conveys purpose, scope, and intended use without any redundant words. It is front-loaded with the key information (jobs of one Travis build) and includes the practical use case.

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

Completeness5/5

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

For a simple read-only tool with one well-documented parameter, the description is complete. Annotations cover the safety profile, the schema covers parameter semantics, and the description states the purpose and use case. No critical information is missing for an agent to invoke it correctly.

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?

The input schema covers 100% of the parameter (build_id) with a clear description of its format and meaning. The tool description does not add any additional parameter information beyond what the schema already provides. Baseline 3 is correct when 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?

The description clearly states the tool's function: retrieving jobs of a single Travis build, including their state and stage, with the explicit purpose of finding which job failed. It distinguishes from siblings like get_build (build details), list_builds (build list), and get_job_log (job log) by focusing on job-level status for a specific build.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

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

The description provides a clear use case ('to find which job failed') and implicitly indicates when to use it: when you need job states and stages for a specific build. It doesn't explicitly state when not to use it or mention alternatives, but the context is sufficient given the sibling tools.

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