@deliveriq/mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DELIVERIQ_API_KEY | Yes | Your DeliverIQ API key |
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": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| deliveriq_verify_emailA | Verify a single email address for deliverability. Returns reachability status (safe/risky/invalid/unknown), a 0-100 score, and detailed checks (syntax, MX, SMTP, disposable, role-based, etc.). Args:
Returns: Markdown report with reachability, score, and check details. Examples:
Credit cost: 1 credit (0 if syntax is invalid) Error Handling:
|
| deliveriq_batch_verifyA | Submit a batch of email addresses for asynchronous verification. Returns a job ID for tracking. Use deliveriq_batch_status to poll progress, and deliveriq_batch_download to get results when complete. Args:
Returns: Job ID, status, estimated completion time, and status polling URL. Examples:
Credit cost: 1 credit per email |
| deliveriq_batch_statusA | Check the status and progress of a batch verification job. Args:
Returns: Job status, progress percentage, and summary when complete. Examples:
Credit cost: Free |
| deliveriq_batch_downloadA | Download the results of a completed batch verification job as CSV. Args:
Returns: CSV text with verification results. Large results may be truncated. Examples:
Credit cost: Free |
| deliveriq_list_jobsA | List batch verification jobs with pagination and optional status filter. Args:
Returns: Table of jobs with ID, status, email count, and dates. Credit cost: Free |
| deliveriq_find_emailA | Find a person's business email address by name and company domain. Uses pattern generation, SMTP probing, corroboration from public sources, and org intelligence. Args:
Returns: Found email address, confidence score and label, verification method, and domain context. Examples:
Credit cost: 2 credits per lookup |
| deliveriq_blacklist_checkA | Check a domain's IP against 50 DNSBL (DNS-based Blackhole List) zones across 6 categories: spam, proxy, dynamic, domain reputation, backscatter, and general. Args:
Returns: Listed/clean status, number of hits, and details per zone. Examples:
Credit cost: 1 credit |
| deliveriq_infrastructure_checkA | Analyze a domain's email infrastructure: SPF, DKIM, DMARC, MTA-STS, BIMI, TLS-RPT records and MX configuration. Args:
Returns: Infrastructure score (0-100) and detailed analysis of each protocol. Examples:
Credit cost: 1 credit |
| deliveriq_spam_trap_analysisA | Analyze an email address for spam trap risk using 13 signals including domain age, DNSBL listing, disposability, role-based detection, entropy, and email pattern trust. Args:
Returns: Risk level (low/medium/high), trap type (pristine/recycled/typo/none), confidence score, and all 13 signals. Examples:
Credit cost: 1 credit |
| deliveriq_domain_intelA | Get a comprehensive intelligence report for a domain including MX records, DNSBL status, email infrastructure (SPF/DKIM/DMARC), domain age, ISP profile, and trust score. This is a combined report — if you only need one aspect, use the more specific tools (deliveriq_blacklist_check, deliveriq_infrastructure_check) instead. Args:
Returns: Complete domain intelligence report with trust score. Examples:
Credit cost: 1 credit (heavy rate limit: 10 req/min) |
| deliveriq_org_intelA | Query the organization intelligence database for a domain. Returns email patterns, verified contact count, and company name. Free — no credits charged. This data is populated by the enrichment system. If no data exists, use deliveriq_find_email to trigger enrichment for the domain. Args:
Returns: Primary email pattern, confidence, verified contact count, and all observed patterns. Examples:
Credit cost: Free |
| deliveriq_check_creditsA | Check current credit balance, usage breakdown, and plan information. Use this before performing credit-consuming operations to verify sufficient balance. Returns: Remaining credits, plan tier, billing period, and usage breakdown by category (single, batch, ESP sync). Examples:
Credit cost: Free |
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 12 tools
Each tool targets a distinct operation (batch download, status, verify, blacklist check, credits, domain intel, find email, infrastructure, list jobs, org intel, spam trap, verify email). No overlaps, even domain_intel suggests using specific tools for granular needs.
All tools follow a consistent deliveriq_verb_noun pattern (e.g., batch_verify, blacklist_check, find_email, org_intel). The prefix is uniform, and verbs clearly indicate actions.
12 tools are well-scoped for an email verification service, covering batch operations, single verification, intelligence, infrastructure, and account management. Neither too many nor too few.
The tool set covers the full verification lifecycle: single and batch verify, status polling, result download, intelligence, blacklist, infrastructure, spam trap, and account credits. Minor gap: no explicit cancel/delete for batch jobs, though batch_status provides monitoring.