Email deliverability for AI agents. 12 tools: verify, DNSBL, DMARC, spam-trap, finder.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-davison-francis-deliveriq-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Open-source SDKs and MCP server for the DeliverIQ email verification platform and the Min8T email editor.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml / communication
Persistent memory using a knowledge graph
An MCP server that securely interfaces with your iMessage database via the Model Context Protocol (MCP), allowing LLMs to query and analyze iMessage conversations. It includes robust phone number validation, attachment processing, contact management, group chat handling, and full support for sending and receiving messages.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
An open-source AI agent that brings the power of Gemini directly into your terminal.
MCP Security Weekly
Get CVE alerts and security updates for io.github.Davison-Francis/deliveriq-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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/ |
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.
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.
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.
MIT — see LICENSE. Each package directory ships its own copy of the license and a per-package README for users who land via npm.
Issues and PRs welcome. See ROADMAP.md for what we'd love
help on.