Skip to main content
Glama

actiond_action_get

Read-onlyIdempotent

Fetch full CI/CD job details by ID, including status, progress, timestamps, duration, and triggering commit. Poll running jobs for live updates or review completed jobs for post-mortem analysis.

Instructions

Fetch full detail for one CI/CD job by its ID. Returns id, repo, plugin_name, status, live progress line, created/started/ended timestamps, duration_ms, and the commit map (hash, message, author) that triggered the job. Works for running jobs (poll to watch progress) and for terminal jobs (done/failed/cancelled), whose records are kept for post-mortem review — pair with actiond_log to replay the job's log lines or actiond_diagnose for interpreted failure causes. Errors when the ID does not exist.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe job ID to retrieve

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.1.2
    • changedInput schema / properties / id / description
      Previous value: -"The action/job ID to retrieve"New value: +"The job ID to retrieve"
  2. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare read-only, idempotent, non-destructive behavior. The description adds that it returns an error for invalid IDs, which is useful. No contradictions with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is detailed but not excessive. It lists return fields, mentions running/terminal use cases, pairs with other tools, and notes error behavior – all in a compact form. Slightly long but still efficient.

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?

Given no output schema, the description lists all returned fields, covers both job states, and mentions the error case. It provides enough context for an agent to know what to expect and how to use the result. Missing explicit note about authentication or rate limits, but not critical.

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 single parameter 'id' is described in the schema itself ('The job ID to retrieve'), and the description does not add additional meaning beyond that. Since schema coverage is 100%, baseline of 3 is appropriate.

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?

Clearly states it fetches full detail for a CI/CD job by ID, enumerating the returned fields (status, timestamps, commit map, etc.). It distinguishes itself from siblings by noting it returns full job detail and pairs with log/diagnose tools for other needs.

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?

Provides explicit usage context: works for running jobs (poll) and terminal jobs, and mentions pairing with actiond_log and actiond_diagnose. It also notes the error condition for a non-existent ID. However, it does not explicitly state when not to use it versus all sibling tools.

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