Mailveri MCP Server
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MAILVERI_API_KEY | Yes | Your Mailveri API Key (Auth-Token). Required. | |
| MAILVERI_BASE_URL | No | Base API endpoint (useful for staging or self-hosted instances). Optional. | https://api.mailveri.com |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| mailveri_verify_emailA | Verify a single email address using Mailveri. Returns deliverability status:
Also returns the remaining credit balance. Rate limit: 1 request per second. |
| mailveri_get_balanceA | Check your current verification credit balance on Mailveri. Returns the number of remaining credits available for verification. |
| mailveri_download_batch_resultA | 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. |
| mailveri_verify_batchA | Submit a list of emails for bulk verification (minimum 2 unique emails). The list is queued on Mailveri's backend for asynchronous distributed verification. Returns a job ID that can be tracked with mailveri_get_batch_status. |
| mailveri_get_batch_statusB | Check progress and status of an ongoing bulk email verification job. Returns percent completion (0 - 100%), current status (QUEUED, PROCESSING, DONE, CANCELED), and a secure download link for results when complete. |
| mailveri_delete_batchC | Cancel or delete a bulk email verification job from your account. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Tools target distinct operations (single verify, batch submit, batch status, batch download, batch cancel, balance), but get_batch_status also returns a download link, overlapping with download_batch_result, creating minor ambiguity about which to use for downloads.
All tools use the mailveri_ prefix followed by consistent snake_case verb_noun names (verify_email, get_balance, verify_batch, get_batch_status, download_batch_result, delete_batch), making the pattern predictable.
Six tools provide a focused, well-scoped surface for an email verification service without redundancy; each tool has a clear role in single or bulk verification workflows.
The toolset covers the full email verification lifecycle: single verify, batch submit, status polling, result download, batch cancellation, and credit balance. No critical operations appear missing.