@deliveriq/mcp
Email-deliverability tools for AI agents — 12 MCP tools across email verification, DNSBL across 50 zones, SPF/DKIM/DMARC analysis, spam-trap scoring, domain intelligence, and email finder. Free tier with no credit card.
README
Min8T SDKs
Open-source SDKs and MCP server for the DeliverIQ email verification platform and the Min8T email editor.
This repository hosts three published npm packages:
| Package | Description | Path |
|---|---|---|
@deliveriq/mcp |
MCP server — 12 tools for email deliverability inside Claude / Cursor / any MCP client | deliveriq-mcp/ |
@deliveriq/sdk |
Official Node.js SDK for the DeliverIQ API | deliveriq-sdk/ |
@min8t.com/plugin-sdk |
Embeddable email-editor SDK for web apps (UMD + ESM, framework-agnostic) | min8t-plugin-sdk/ |
Quick start — DeliverIQ MCP server
The MCP server gives Claude (and any MCP-compatible client) tools for email verification, sender reputation, DMARC analysis, and inbox-placement checks.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"deliveriq": {
"command": "npx",
"args": ["-y", "@deliveriq/mcp"],
"env": {
"DELIVERIQ_API_KEY": "lc_your_api_key"
}
}
}
}
Get an API key at min8t.com/deliveriq (free tier available). Restart Claude Desktop. Done.
See deliveriq-mcp/README.md for the full tool
reference, Cursor + Claude Code configs, and self-hosting notes.
Quick start — DeliverIQ Node SDK
npm install @deliveriq/sdk
import { DeliverIQ } from '@deliveriq/sdk';
const client = new DeliverIQ({ apiKey: process.env.DELIVERIQ_API_KEY });
const result = await client.verify('alice@example.com');
console.log(result); // { deliverable: true, reason: 'mailbox-exists', score: 0.97 }
See deliveriq-sdk/README.md for the full
reference.
Quick start — Min8T Plugin SDK
Embed the full Min8T email editor in any web app:
<script src="https://unpkg.com/@min8t.com/plugin-sdk@latest/dist/plugin-sdk.umd.js"></script>
<div id="editor"></div>
<script>
Min8T.init({
container: '#editor',
pluginToken: 'es_plugin_...',
});
</script>
See min8t-plugin-sdk/README.md for ESM,
React, Vue, and Angular bindings.
License
MIT — see LICENSE. Each package directory ships its own copy of the license and a per-package README for users who land via npm.
Contributing
Issues and PRs welcome. See ROADMAP.md for what we'd love
help on.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.