Skip to main content
Glama

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.

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.3/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation4/5

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.

Naming Consistency5/5

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.

Tool Count3/5

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.

Completeness2/5

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 tools
send_bulkBInspect

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)
Behavior2/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters3/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). 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.

Purpose4/5

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.

Usage Guidelines3/5

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.

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

Conciseness5/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/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' - 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.

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

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?

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.

Conciseness4/5

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.

Completeness3/5

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.

Parameters3/5

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.

Purpose4/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 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.

Usage Guidelines3/5

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.

Discussions

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

Try in Browser

Your Connectors

Sign in to create a connector for this server.