Skip to main content
Glama

send_bulk

Envía hasta 10 emails en una sola llamada. Cuesta 5 créditos.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
smtpYes
emailsYesLista de emails a enviar (máx 10)

Schema Changelog

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

  1. First observed

TDQS

A3.5/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. It discloses two behavioral traits: a maximum of 10 emails and a cost of 5 credits. However, it does not mention failure handling, atomicity, or response behavior, which are relevant for an email-sending tool.

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?

Two short sentences, each carrying distinct information: the action/limit and the cost. No filler or redundancy.

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?

Despite the nested SMTP object, no output schema, and no annotations, the description provides only a bare action, limit, and cost. It omits important context like error handling, partial-send behavior, and response format, making it incomplete for a moderately complex bulk-send operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 50%: only the 'emails' parameter has a description, and the main description merely repeats that max limit. The 'smtp' object lacks any explanation in the schema or description, so the description fails to compensate for the low schema coverage.

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 action ('Envía hasta 10 emails'), the resource ('emails'), and the scope ('en una sola llamada'), distinguishing it from likely single-send siblings. The cost mention adds specificity.

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 a batching use case ('hasta 10 emails en una sola llamada') but does not explicitly state when to use this tool versus send_email or send_template, nor any exclusions or alternatives.

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.