send_email
Send an email with specified recipient, subject, body, and optional CC/BCC fields using the email client.
Instructions
Send an email
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cc | No | ||
| to | Yes | ||
| bcc | No | ||
| body | Yes | ||
| name | Yes | ||
| subject | Yes |
Send an email with specified recipient, subject, body, and optional CC/BCC fields using the email client.
Send an email
| Name | Required | Description | Default |
|---|---|---|---|
| cc | No | ||
| to | Yes | ||
| bcc | No | ||
| body | Yes | ||
| name | Yes | ||
| subject | Yes |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, and the description does not disclose side effects, delivery semantics, or whether this operation is irreversible. The agent is left without any transparency about what sending an email entails.
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 very short and front-loaded, but it is under-specified for a tool with six parameters. While there is no unnecessary verbosity, the extreme brevity leaves out essential information.
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 output schema, no annotations, and no parameter descriptions, the tool definition is far from complete. An agent cannot determine expected inputs, return values, or side effects from this description alone.
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 lists six parameters but provides no descriptions for any of them, and the description does not explain their meaning or format. With 0% schema description coverage, the tool definition entirely fails to clarify parameter semantics.
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 'Send an email' is a specific verb and resource, clearly distinguishing this tool from the sibling read, search, list, and config tools. However, it lacks any additional context about scope or behavior, so it is not maximally informative.
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?
There is no guidance on when to use this tool instead of alternatives such as read_email or search_emails. The description simply states the action without any usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.