CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Deliveriq Mcp

davison-francis/min8t-sdks
authSTDIOregistry active
Summary

Twelve tools for email deliverability work inside Claude or any MCP client. You get single-address verification, DMARC record analysis, DNSBL reputation checks, spam-trap detection, and inbox-placement testing, all backed by the DeliverIQ API. Ships as an npx-runnable package that takes a single API key in your config. Useful when you're building email sending features, debugging bounce rates, or auditing sender reputation without leaving your editor. Free tier available. Also published as a standalone Node SDK if you need the same checks in your own code.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Min8T SDKs

License: MIT @deliveriq/mcp version @deliveriq/mcp downloads @deliveriq/sdk version @min8t.com/plugin-sdk version MCP Registry Davison-Francis/min8t-sdks MCP server

Open-source SDKs and MCP server for the DeliverIQ email verification platform and the Min8T email editor.

This repository hosts three published npm packages:

PackageDescriptionPath
@deliveriq/mcpMCP server — 12 tools for email deliverability inside Claude / Cursor / any MCP clientdeliveriq-mcp/
@deliveriq/sdkOfficial Node.js SDK for the DeliverIQ APIdeliveriq-sdk/
@min8t.com/plugin-sdkEmbeddable 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.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

DELIVERIQ_API_KEY*secret

Your DeliverIQ API key (format: lc_*). Get one free at https://min8t.com/deliveriq

Categories
Communication & Messaging
Registryactive
Package@deliveriq/mcp
TransportSTDIO
AuthRequired
UpdatedMay 2, 2026
View on GitHub

Related Communication & Messaging MCP Servers

View all →
Microsoft 365 Teams

io.github.mindstone/mcp-server-microsoft-teams

Microsoft 365 Teams via Graph: list chats, read/send messages, list teams/channels, presence.
8
Outlook Email

com.mintmcp/outlook-email

A MCP server for Outlook email that lets you search, read, and draft emails and replies.
8
Resend Email MCP

helbertparanhos/resend-email-mcp

Complete Resend email MCP: full API coverage + debug layer (deliverability, DNS, bounces).
Email Mcp

marlinjai/email-mcp

Unified email MCP server for Gmail, Outlook, iCloud, and IMAP with batch operations
13
Email (IMAP/SMTP)

io.github.mindstone/mcp-server-email-imap

Email IMAP/SMTP MCP server: iCloud, Gmail, Yahoo, Outlook, and custom IMAP providers
8
HTML Email Playbook

io.github.osamahassouna/email-playbook-mcp

Teaches AI to write HTML email that renders in Outlook, Gmail, and Apple Mail. 19 rules, 6 comps.