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.3/5 across 3 of 3 tools scored.
The tools are mostly distinct with clear purposes: send_bulk for batch emails, send_email for single transactional emails, and send_template for templated emails. However, send_email and send_template could be slightly confused as both handle single emails, but the template distinction helps differentiate them.
All tool names follow a consistent verb_noun pattern with 'send_' prefix and snake_case, making them predictable and easy to understand. There are no deviations in naming style across the set.
With only 3 tools, the set feels thin for an email server that might benefit from additional operations like checking status, managing templates, or listing sent emails. However, it covers basic sending functionality adequately for a minimal scope.
The toolset is severely incomplete for an email domain, lacking any read, update, or delete operations. There are no tools for managing templates beyond sending, checking email status, or handling errors, which are critical for robust email workflows and will likely cause agent failures.
Available Tools
3 toolssend_bulkBInspect
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 provided, the description carries the full burden of behavioral disclosure. It mentions the 10-email limit and 5-credit cost, which are useful operational constraints. However, it doesn't disclose critical behavioral aspects like error handling, rate limits beyond the batch size, authentication requirements (implied by SMTP parameters but not explicitly stated), or what happens when emails fail partially in a batch.
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 extremely concise - just two short sentences that convey the core functionality and cost. There's no wasted language, though the brevity comes at the expense of completeness. The information is front-loaded with the primary purpose stated immediately.
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 2 parameters (one complex nested object), no annotations, no output schema, and only 50% schema description coverage, the description is inadequate. It doesn't explain the return values, error conditions, authentication requirements, or how to interpret the SMTP configuration. The credit cost mention is helpful but doesn't compensate for the missing context.
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). The tool description doesn't mention any parameters directly, though it implies the 'emails' parameter through the 10-email limit reference. It adds no semantic information about the SMTP configuration parameter or the structure of email objects beyond what's in 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's purpose: sending up to 10 emails in a single call. It specifies the verb ('envía' - sends) and resource (emails), though it doesn't explicitly differentiate from sibling tools send_email and send_template. The description is in Spanish while the tool name is in English, which could cause minor confusion.
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 usage context by mentioning the 10-email limit and 5-credit cost, suggesting this is for batch operations with resource constraints. However, it doesn't explicitly state when to use this tool versus send_email (single email) or send_template (template-based emails), nor does it provide any exclusion criteria or prerequisites.
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 provided, the description carries full burden for behavioral disclosure. It reveals the transactional nature and cost implication (1 credit), which are valuable behavioral traits. However, it doesn't cover important aspects like error handling, delivery confirmation, rate limits, or authentication requirements beyond what's in the SMTP parameters.
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 extremely concise with just two short Spanish sentences that each earn their place - one stating the core functionality, the other revealing the cost implication. It's front-loaded with the primary purpose and wastes no words.
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 6-parameter tool with no annotations and no output schema, the description provides minimal but functional context. It covers the basic purpose and cost, but lacks information about return values, error conditions, or how this differs from sibling tools, leaving significant gaps in completeness.
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 100%, so the schema already documents all 6 parameters thoroughly. The description adds no additional parameter semantics beyond what's in the schema, maintaining the baseline score of 3 for high schema coverage situations.
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' - sends) and resource ('email transaccional'), providing a specific verb+resource combination. However, it doesn't distinguish this transactional email sending from sibling tools like send_bulk or send_template, which would be needed for a perfect score.
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 the sibling tools (send_bulk, send_template). It mentions a cost ('Cuesta 1 crédito') which could imply usage considerations, but offers no explicit when/when-not guidance or alternative recommendations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
send_templateBInspect
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?
No annotations are provided, so the description carries the full burden. It discloses a cost ('Cuesta 2 créditos'), which is a behavioral trait (resource consumption). However, it lacks details on permissions, rate limits, error handling, or what happens upon sending (e.g., confirmation, side effects). The description doesn't contradict any annotations, as none exist.
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 concise and front-loaded, with two sentences: one stating the purpose and cost, and another listing templates. Every sentence adds value (cost and template examples), though it could be slightly more structured by separating cost and template details.
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?
Given no annotations, no output schema, and moderate complexity (5 parameters with nested objects), the description is incomplete. It covers purpose and cost but lacks details on behavioral aspects like authentication needs (implied by smtp parameters), error scenarios, or return values. The schema handles parameter documentation well, but the description doesn't compensate for missing behavioral context.
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 80%, providing a high baseline. The description adds minimal value by listing template names (welcome, invoice, reset_password, notification), which the schema already covers in the 'template' parameter description. It doesn't explain the purpose of 'smtp', 'variables', or other parameters beyond what the schema provides.
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 email') and resource ('usando un template predefinido'), distinguishing it from sibling tools like send_bulk and send_email by specifying template-based sending. However, it doesn't explicitly contrast with send_email (which might be for custom emails) or send_bulk (which might be for bulk operations).
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 usage when a predefined template is needed, as it lists available templates (welcome, invoice, reset_password, notification). However, it doesn't explicitly state when to use this tool versus send_bulk or send_email, nor does it provide exclusions or prerequisites beyond the cost mention.
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!