email_verify
Combined email verification
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| Yes |
Combined email verification
| Name | Required | Description | Default |
|---|---|---|---|
| Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full disclosure burden, and it discloses nothing. It does not say whether the mailbox is contacted, whether MX/SMTP/DNS lookups occur, whether domains or syntax are checked, or what the result represents.
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?
Three words with no structure or front-loaded detail. This is under-specification rather than conciseness — the description is short because content is missing, not because it was trimmed.
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?
With no annotations, no output schema, an undocumented parameter, and a description of three words, an agent has essentially nothing to work with. For a verification tool whose whole value is the result semantics, this is inadequate.
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 single 'email' parameter has an empty schema description (0% coverage), and the tool description adds no format, syntax, or normalization guidance. The parameter name is self-explanatory, which keeps this above 1, but nothing compensates for the empty 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 phrase 'email verification' names a recognizable verb+resource, but the qualifier 'Combined' is never explained, so it does not distinguish this tool from the three sibling email tools (email_validate, email_disposable, email_security). An agent cannot tell which of these it should call.
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 when-to-use guidance and no mention of the sibling email tools that plausibly overlap. The word 'Combined' weakly implies it aggregates multiple checks, but that inference is never made explicit, so routing is guesswork.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.