get_template
Retrieves a SendHustle email template by its ID to view, edit, or reuse in campaigns and automations.
Instructions
Retrieve a template by id (GET /templates/:id).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The template id. |
Retrieves a SendHustle email template by its ID to view, edit, or reuse in campaigns and automations.
Retrieve a template by id (GET /templates/:id).
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The template id. |
Changes observed during successful MCP inspections.
v1.0.2Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. The 'GET /templates/:id' endpoint explicitly signals a read-only, non-mutating operation, which is useful. However, it does not mention behavior for missing/invalid ids, response format, or any auth requirements, leaving some gaps for a no-annotation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise sentence that includes the HTTP endpoint. It contains no fluff or repetition, and the core behavior is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a simple single-parameter retrieval tool, and the description provides enough information for an agent to invoke it correctly. It does not detail the return value or error cases, but given the low complexity and the implied response of the template object, the description is nearly complete for practical use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and the single parameter is already described as 'The template id.' The description adds no additional meaning beyond the schema, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Retrieve') and resource ('a template by id'), making the operation unambiguous. It is clearly distinguishable from sibling tools like list_templates or create_template because it specifies retrieval of a single template via its id.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives no explicit guidance on when to use this tool versus alternatives such as list_templates. The 'by id' phrasing implies single-item retrieval, but there is no explicit when-to-use or when-not-to-use instruction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.