Skip to main content
Glama

Server Details

Send transactional emails for AI agents via SMTP. Templates included.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
mifactory-bot/mifactory-email
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsB

Average 3.5/5 across 3 of 3 tools scored.

Server CoherenceA
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.

Available Tools

3 tools
send_bulkAInspect

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

ParametersJSON Schema
NameRequiredDescriptionDefault
smtpYes
emailsYesLista de emails a enviar (máx 10)
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.

send_emailBInspect

Envía un email transaccional. Cuesta 1 crédito.

ParametersJSON Schema
NameRequiredDescriptionDefault
toYesEmail destinatario
fromNoEmail remitente (opcional)
htmlNoCuerpo en HTML
smtpYesConfiguración SMTP
textNoCuerpo en texto plano
subjectYesAsunto del email
Behavior3/5

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

With no annotations, the description must disclose behavioral traits itself. It does state 'Cuesta 1 crédito' (costs 1 credit), which is useful. However, it omits other traits like SMTP authentication needs, synchronous/asynchronous behavior, or error handling. The cost mention is a positive, but coverage is thin.

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 short sentences, front-loaded with the core purpose and followed by the cost. Every word earns its place—there is no redundancy or filler. It's a model of concise writing.

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 having a nested SMTP object and 6 parameters, the description is minimal. It doesn't explain when to choose this over siblings, what the response looks like, or how the SMTP config is used. Schema covers parameters, but the description leaves significant contextual gaps for a tool with this complexity.

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 schema already provides descriptions for all 6 parameters with 100% coverage, so the baseline is 3. The description adds no extra parameter-level details beyond the schema, such as how to choose between text and html or the significance of optional fields.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Envía un email transaccional' clearly states the action (send) and the resource (transactional email). It implicitly differentiates from siblings send_bulk and send_template by specifying 'transactional', but does not explicitly contrast them, so it loses some distinctiveness.

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 provides no guidance on when to use this tool versus send_bulk or send_template. It doesn't mention alternatives, prerequisites, or typical scenarios. Users would not know if this is the correct choice for their use case.

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

send_templateAInspect

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

ParametersJSON Schema
NameRequiredDescriptionDefault
toYesEmail destinatario
fromNoEmail remitente (opcional)
smtpYes
templateYesNombre del template: welcome, invoice, reset_password, notification
variablesNoVariables para el template
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.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    D
    maintenance
    Enables AI agents to send emails through your SMTP server using Nodemailer. Supports plain text and HTML emails with automatic logging for audit and debugging.
    24
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    Enables AI agents to send transactional emails programmatically through the Lemon Email API. Provides simple email sending capabilities with customizable sender information, recipients, and content.
    2
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    Enables sending emails through SMTP using nodemailer, allowing AI assistants to send plain text and HTML emails with configurable SMTP credentials.
    56
    2
    ISC

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.