Skip to main content
Glama
mailveri

Mailveri MCP Server

Official
by mailveri

mailveri_download_batch_result

Retrieve the download URL for a completed batch email verification job so you can download the result ZIP using an Auth-Token header.

Instructions

Get download URL for completed batch verification results.

Returns the download URL for the result zip file. The batch job must be completed (status = DONE) before results are available. Use the returned URL with an Auth-Token header to download the file.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.6/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full behavioral burden. It does disclose a real prerequisite (status = DONE) and an auth requirement (Auth-Token header), which is useful, but it omits failure behavior when the job is incomplete and whether the URL expires or is single-use.

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

Conciseness4/5

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

Short and front-loaded, with the core action in the first line and prerequisites and auth following. The second sentence restates the first line's content, a minor redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

An output schema exists, so return values need no explanation, and the description covers the key prerequisite and auth requirement. Only error handling for an incomplete job is missing.

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

Parameters3/5

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

Schema description coverage is 0%, and the description adds no meaning about job_id beyond its self-evident name. The single parameter is obvious enough that the gap is minor, but the description does no work here.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: retrieving a download URL for completed batch verification results. It is clearly distinct in kind from siblings like get_batch_status and verify_batch, though it never names an alternative explicitly.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It gives a clear precondition (the job must be DONE before results are available) and tells the caller how to use the returned URL. It does not state what to do when the job is not done or point to a sibling for that case.

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