email_disposable
Detect disposable email domains
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| Yes |
Detect disposable email domains
| 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 behavioral burden. It implies a read-only detection check, but says nothing about the detection method, whether results are cached, rate limits, or what the response looks like.
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?
It is a single, front-loaded sentence with zero waste, which is appropriate for a simple tool. But the extreme brevity leaves the definition under-specified rather than efficiently scoped.
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 and no output schema, the description should at least state the return shape (boolean vs. list of matched domains) and clarify the input format. Neither is present for a tool with one ambiguous parameter.
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 description coverage is 0% and the single 'email' parameter has an empty description string. The description says 'disposable email domains', leaving genuine ambiguity about whether the input is a full address or just a domain, and it adds no format or validation detail.
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 gives a concrete verb+resource (detect disposable email domains), so the agent knows exactly what the tool returns conceptually. However, it does nothing to distinguish itself from close siblings like email_validate, email_verify, and email_security, which an agent could easily confuse it with.
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, no exclusions, and no mention of the sibling tools that overlap in purpose (email_validate, email_verify, email_security). The agent must infer that this is the disposable-domain checker rather than a general validation tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.