Skip to main content
Glama

generate_email

Generate a professional email for a CreatorOS project by specifying project ID and topic. Adjust tone for appropriate communication.

Instructions

Generate a professional email for a CreatorOS project.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toneNoProfessional
topicYes
project_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
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 only says 'Generate a professional email', which states the obvious action but provides no detail on side effects, whether the generation is persisted, how the project context influences the output, or any rate/usage limitations. The behavioral surface is almost entirely unexplained.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The text is a single, front-loaded sentence with no verbosity, which is efficient. However, it is underspecified—it omits nearly all operational details an agent needs. This is closer to under-specification than disciplined conciseness, so it earns a middle score.

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 three parameters, zero schema descriptions, and no annotations, the description is woefully incomplete. While the presence of an output schema covers return values, the agent is left guessing about input semantics, usage context relative to siblings, and behavioral consequences. The definition does not provide enough context for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate by explaining the parameters. It entirely fails to do so: there is no clarification of what project_id refers to, what topic should contain, or how tone behaves beyond the default. The phrase 'for a CreatorOS project' vaguely hints at project_id but does not map to parameters meaningfully. An agent has no information to fill the required fields correctly.

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 a specific verb ('Generate'), a concrete resource ('a professional email'), and the scope ('for a CreatorOS project'). It is easily distinguishable from sibling tools like generate_linkedin_post or generate_newsletter because the resource is unique. This is a clear, non-tautological definition.

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 the tool is used when an email needs to be generated, and the resource name itself signals its purpose relative to the content-generation siblings. However, there is no explicit guidance on when to choose this over alternatives (e.g., generate_newsletter) or any other exclusion criteria. Usage is implied rather than stated.

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