Skip to main content
Glama
Achlesha

sendhustle-mcp

get_automation

Retrieve an automation and its step graph by providing the automation ID to inspect workflow details.

Instructions

Retrieve an automation, including its step graph (GET /automations/:id).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe automation id.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.2

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses the HTTP method (GET) implying read-only behavior, and explicitly mentions the step graph inclusion. However, it does not describe the complete return payload, error conditions, or whether run history is excluded.

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 front-loads the primary action and resource, then adds the useful endpoint reference. There is zero redundancy or wasted words.

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 simple GET tool with one parameter and no output schema, the description covers the core purpose and highlights the step graph, which is the distinguishing feature. It could mention what is not returned (e.g., run history) but is otherwise complete enough for correct invocation.

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% for the single 'id' parameter, and the schema already explains it as 'The automation id.' The description adds no additional semantics beyond what the schema states, so the baseline of 3 applies.

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 a specific verb ('Retrieve') and resource ('an automation'), and adds 'including its step graph' which distinguishes it from list_automations and get_automation_run. The REST endpoint provides an unambiguous reference.

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 gives no guidance on when to use this tool versus its siblings like list_automations or get_automation_run. It does not mention when to prefer this over alternatives, so the agent must infer from the name alone.

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