Skip to main content
Glama
tspvivek
by tspvivek

baasix_get_template

Retrieve a specific email template by its unique ID to access its content and configuration for reuse or editing.

Instructions

Get a specific email template by ID

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesTemplate ID (UUID)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.7

TDQS

A3.7/5.0
Behavior3/5

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

No annotations are provided, so the description carries the burden of disclosing behavior. The verb 'Get' clearly indicates a read-only operation, but it does not mention what happens if the ID does not exist, whether the response is the full template content or metadata, or any other non-obvious behavior. This is a minimal but not misleading disclosure.

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, front-loaded sentence that states the action, resource, and identifier in the most direct way possible. There is no filler or redundancy; every word earns its place.

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

Completeness3/5

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

The tool has only one parameter and no output schema, so the description should clarify what the caller receives in return. It names the resource and the lookup key but does not describe the return value or error behavior, leaving a notable gap for an agent that must rely solely on this description.

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 already documents the only parameter as 'Template ID (UUID)' with 100% coverage. The description's 'by ID' adds no new semantic meaning beyond the schema, 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 uses a specific verb ('Get'), identifies the resource ('email template'), and scopes it by 'ID', making it clear this is a single-item fetch. This clearly distinguishes it from sibling tools such as baasix_list_templates and baasix_update_template without needing to read their schemas.

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

Usage Guidelines3/5

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

The description does not explicitly state when to use this tool over alternatives like list_templates or update_template. The intended usage is implied by the phrase 'by ID' — use it when you already have a specific template UUID — but no explicit context, exclusions, or alternative routing is provided.

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