send_agent_otp
Sends a 6-digit OTP code to the customer's email address for in-chat authentication.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | The email address of the customer. |
Sends a 6-digit OTP code to the customer's email address for in-chat authentication.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | The email address of the customer. |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but only states the basic action of sending an OTP. It does not disclose potential delays, rate limits, error handling (e.g., invalid email), side effects, or whether the operation is idempotent.
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 a single sentence of 15 words, directly front-loading the action and purpose with zero wasted content. It is optimally concise.
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 simple one-parameter tool with no output schema, the description covers the core action adequately but lacks details on expected return value, confirmation, or error cases. It is sufficient but minimal.
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 100%, so baseline is 3. The description adds no additional detail beyond the schema; it simply repeats 'email address'. No format, validation, or constraint information is provided that isn't already 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 verb 'sends', specifies the resource '6-digit OTP code', the recipient's email address, and the context 'for in-chat authentication'. It effectively distinguishes from sibling 'verify_agent_otp' which handles verification.
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 in an in-chat authentication flow but does not explicitly state when to use this tool versus alternatives, such as before verify_agent_otp. No guidance on prerequisites or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.