mifactory-email
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.
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.
Tool Definition Quality
Average 3.5/5 across 3 of 3 tools scored.
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.
All tool names follow the consistent 'send_' prefix followed by a clear noun (bulk, email, template). This creates a predictable and readable pattern.
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.
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 toolssend_bulkAInspect
Envía hasta 10 emails en una sola llamada. Cuesta 5 créditos.
| Name | Required | Description | Default |
|---|---|---|---|
| smtp | Yes | ||
| emails | Yes | Lista de emails a enviar (máx 10) |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Email destinatario | |
| from | No | Email remitente (opcional) | |
| html | No | Cuerpo en HTML | |
| smtp | Yes | Configuración SMTP | |
| text | No | Cuerpo en texto plano | |
| subject | Yes | Asunto del email |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Email destinatario | |
| from | No | Email remitente (opcional) | |
| smtp | Yes | ||
| template | Yes | Nombre del template: welcome, invoice, reset_password, notification | |
| variables | No | Variables para el template |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityDmaintenanceEnables AI agents to send emails through your SMTP server using Nodemailer. Supports plain text and HTML emails with automatic logging for audit and debugging.24MIT
- Alicense-qualityDmaintenanceEnables AI agents to send transactional emails programmatically through the Lemon Email API. Provides simple email sending capabilities with customizable sender information, recipients, and content.2MIT
- Alicense-qualityDmaintenanceEnables sending emails through SMTP using nodemailer, allowing AI assistants to send plain text and HTML emails with configurable SMTP credentials.562ISC
- Apache 2.0