Skip to main content
Glama
mailveri

Mailveri MCP Server

Official
by mailveri

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
MAILVERI_API_KEYYesYour Mailveri API Key (Auth-Token). Required.
MAILVERI_BASE_URLNoBase 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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
mailveri_verify_emailA

Verify a single email address using Mailveri.

Returns deliverability status:

  • VALID: Mailbox exists and can receive emails

  • INVALID: Mailbox does not exist, disabled, or syntax error

  • DISPOSABLE: Temporary / throwaway email address

  • ROLE_ACCOUNT: Generic company address (e.g. admin@, support@, info@)

  • CATCH_ALL: Domain accepts all incoming emails

  • FULL_INBOX: Mailbox is full

  • UNKNOWN: Mail server could not be reached or timed out

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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 6 tools

Disambiguation4/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness5/5

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.

Maintenance

ActivityMaintained
ResponsivenessNo issues