Skip to main content
Glama

coding_process_single_ticket

Destructive

Process a single coding ticket by submitting a free-text objective and optional JSON inputs, which routes through the domain-agent dispatcher under your JWT, tenant, and company scope.

Instructions

Run the coding domain agent action process_single_ticket.

Routes through the platform's domain-agent dispatcher under your JWT, tenant, and company scope.

Args: message: Free-text objective for the action. inputs: Optional JSON string of structured inputs for the action.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
inputsNo{}
messageNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior3/5

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

Annotations already declare the tool non-read-only, non-idempotent, and destructive; the description adds one useful behavioral fact: execution goes through a domain-agent dispatcher under the caller's JWT/tenant/company scope. However, despite `destructiveHint: true`, it stays silent on what side effects processing a ticket actually produces, leaving the agent without expectations for a mutating action.

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 compact and front-loaded: two sentences establish the action and execution route, followed by a terse Args block. Every sentence earns its place and there is no redundancy with the schema, so it earns a strong score; the routing sentence is slightly boilerplate but still conveys the scope fact.

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

Completeness2/5

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

For a destructive, non-idempotent tool with a clearly overlapping sibling (`coding_process_ticket_with_branch`), the description omits side-effect expectations and any selection guidance. The output schema reduces the burden of explaining return values, but the decision context and behavioral warnings an agent needs before invoking a mutating dispatcher action are 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 description coverage is 0%, so the description must carry parameter meaning. It does name both parameters with one-line semantics (`message` as free-text objective, `inputs` as an optional JSON string), but `structured inputs for the action` is vague and gives no format or content guidance, so it only partially compensates for the missing schema descriptions.

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 verb and resource: it runs the coding domain agent action `process_single_ticket` and routes through the platform's domain-agent dispatcher. This is a clear statement of what the tool does, but it does not differentiate it from the sibling `coding_process_ticket_with_branch`, so it stops short of a 5.

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?

The description provides no guidance on when to use this tool versus alternatives. The dispatcher-routing sentence is implementation detail, not usage context, and no exclusions or alternative tools are named even though near-identical siblings like `coding_process_ticket_with_branch` and `dispatch_domain_agent` exist.

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