Skip to main content
Glama

send_template

Envía email usando un template predefinido. Cuesta 2 créditos. Templates: welcome, invoice, reset_password, notification.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toYesEmail destinatario
fromNoEmail remitente (opcional)
smtpYes
templateYesNombre del template: welcome, invoice, reset_password, notification
variablesNoVariables para el template

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries full responsibility for behavioral disclosure. It does mention the 2-credit cost, which is useful, but it does not disclose potential side effects, failure modes, or behavior when the template is missing. The description adds some behavioral context but lacks depth.

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 two sentences, front-loading the main purpose, then listing templates and the credit cost. Every sentence carries useful information, with no unnecessary filler.

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?

For a tool with nested objects and no output schema, the description provides minimal context. It lists templates and cost but does not explain the role of 'variables', distinguish from sibling tools, or describe what happens after sending. Adequate but with clear gaps.

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 high (80%), with parameter descriptions for 'to', 'template', and 'variables'. The description's list of templates duplicates the schema's enum-like description, adding no new meaning. It does not clarify how 'variables' interacts with templates or what 'smtp' expects beyond the schema.

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 the tool sends an email using a predefined template, with a specific list of available templates (welcome, invoice, reset_password, notification). This distinguishes it from sibling tools like send_email or send_bulk.

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 implies use cases by mentioning 'template predefinido' and listing template names, but it does not explicitly state when to use this tool versus alternatives like send_bulk or send_email. No exclusions or alternative guidance are provided.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.8/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: send_bulk for multiple emails, send_email for a single transactional email, and send_template for using predefined templates. No overlap in functionality.

Naming Consistency5/5

All tool names follow the consistent 'send_' prefix followed by a clear noun (bulk, email, template). This creates a predictable and readable pattern.

Tool Count5/5

With exactly 3 tools, the server is well-scoped for its purpose of sending emails. Each tool covers a distinct use case without unnecessary bloat.

Completeness4/5

The core sending operations are covered: bulk, single, and template-based. Minor gaps exist such as attachment support or scheduling, but for a basic email sending server, the surface is adequate.