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

Inbox Check — Email Deliverability Test

live-direct-marketing/ldm-inbox-check-mcp
authSTDIOregistry active
Summary

Wraps the Inbox Check REST API so your agent can test email deliverability across nine real provider mailboxes: Gmail, Outlook, Yahoo, iCloud, AOL, GMX, T-Online, Mail.ru, and Yandex. Exposes five tools to create tests, retrieve placement results (Inbox, Spam, Promotions, Updates), check SPF/DKIM/DMARC authentication, grab screenshots, and list or delete past tests. Useful when debugging why transactional emails land in Spam, QA-ing cold email templates before a campaign, or monitoring shared-IP reputation over time. Requires an API key from the hosted service. The underlying mailboxes are real IMAP accounts, not simulations, so you get actual filter verdicts and authentication header parsing.

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 →

ldm-inbox-check-mcp

MCP server for Inbox Check — programmatic email deliverability testing across 9 providers (Gmail, Outlook, Yahoo, iCloud, AOL, GMX, T-Online, Mail.ru, Yandex) for AI agents.

📦 npm · 🌐 check.live-direct-marketing.online · ✨ awesome-mcp-servers · 🔍 Glama

npm version npm downloads License: MIT MCP

Plug real inbox-placement testing into Claude Desktop, Cursor, Windsurf, Cline, or any other MCP-compatible AI client. The server wraps the Inbox Check REST API and exposes 5 tools your agent can call directly — create a test, send your email to the returned seed addresses, and read back per-provider placement (Inbox / Spam / Promotions / Updates), authentication results (SPF, DKIM, DMARC), headers, and screenshots.

Why use this?

  • 9 real provider mailboxes — Gmail, Outlook, Yahoo, iCloud, AOL, GMX, T-Online, Mail.ru, Yandex. Not simulations: actual IMAP-backed seed accounts, actual filter verdicts.
  • Authentication verification — SPF, DKIM, DMARC alignment reported per delivery, parsed from Authentication-Results headers.
  • Folder detection — Inbox, Spam, Promotions, Updates, Social, Forums, Category-specific tabs where providers expose them.
  • Screenshots — rendered inbox/spam list view for Gmail, Outlook and others, so the agent can show the user what the recipient sees.
  • No flaky scraping — the service runs its own seed mailboxes; your agent only talks to a stable REST API.
  • Built for AI agents — strict JSON schema via Zod, deterministic tool names, cursor pagination, idempotent keys.

What it does

Exposes 5 tools that wrap the Inbox Check REST API:

ToolDescription
inbox_check_createCreate a placement test; returns seed addresses to send your email to.
inbox_check_statusGet per-provider placement, SPF/DKIM/DMARC, screenshots.
inbox_check_listList recent tests with cursor pagination.
inbox_check_deleteDelete a test and its screenshots.
inbox_check_meInspect API key metadata, features, quota usage.

Install

npx ldm-inbox-check-mcp

No global install needed — Claude Desktop / Cursor / Windsurf / Cline will npx-run it on demand.

Get an API key

  1. Go to https://check.live-direct-marketing.online/docs.
  2. Contact the operator for a key (self-service issuance coming later).
  3. Copy the icp_live_... string — it's shown exactly once.

Configure your MCP client

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "inbox-check": {
      "command": "npx",
      "args": ["-y", "ldm-inbox-check-mcp"],
      "env": {
        "INBOX_CHECK_API_KEY": "icp_live_xxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}

Cursor

~/.cursor/mcp.json:

{
  "mcpServers": {
    "inbox-check": {
      "command": "npx",
      "args": ["-y", "ldm-inbox-check-mcp"],
      "env": { "INBOX_CHECK_API_KEY": "icp_live_..." }
    }
  }
}

Windsurf

~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "inbox-check": {
      "command": "npx",
      "args": ["-y", "ldm-inbox-check-mcp"],
      "env": { "INBOX_CHECK_API_KEY": "icp_live_..." }
    }
  }
}

Cline (VS Code)

~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json (macOS) or the equivalent on your platform:

{
  "mcpServers": {
    "inbox-check": {
      "command": "npx",
      "args": ["-y", "ldm-inbox-check-mcp"],
      "env": { "INBOX_CHECK_API_KEY": "icp_live_..." }
    }
  }
}

Environment variables

VariableRequiredDefault
INBOX_CHECK_API_KEYyes—
INBOX_CHECK_BASE_URLnohttps://check.live-direct-marketing.online

Override the base URL only for self-hosted deployments or testing.

Example prompts

"Use inbox-check to create a test against Gmail, Outlook and Yahoo, then wait 90 seconds and tell me where the email landed."

"List my last 10 inbox-check tests and summarise the spam rate per provider."

"Create a test, I'll send the email, then show me the SPF/DKIM/DMARC results and tell me which record is misaligned."

Use cases

  1. Cold-email warm-up QA — before a campaign, send a draft to the seed addresses and have the agent verify Inbox placement on Gmail + Outlook.
  2. Authentication debugging — when a domain starts landing in Spam, ask the agent to run a test and point to the failing SPF/DKIM/DMARC check.
  3. Template change review — compare placement of an old vs new email template across 9 providers in a single agent run.
  4. Shared-IP reputation monitoring — schedule periodic tests and have the agent alert when Spam rate crosses a threshold.
  5. Transactional mail audit — verify that password-reset / receipt emails actually reach the Inbox (not Promotions) on every major provider.

Related

  • check.live-direct-marketing.online — the hosted Inbox Check service behind this MCP server.
  • live-direct-marketing/ldm-sdk-js — official TypeScript SDK + MCP server for LDM.delivery (email delivery API for AI agents).
  • live-direct-marketing/awesome-email-deliverability — curated list of tools, resources, and best practices for email deliverability.

License

MIT © Live Direct Marketing

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

INBOX_CHECK_API_KEY*secret

Bearer API key for Inbox Check service (starts with icp_live_)

INBOX_CHECK_BASE_URLdefault: https://check.live-direct-marketing.online

Override base URL for self-hosted deployments

Categories
Communication & Messaging
Registryactive
Packageldm-inbox-check-mcp
TransportSTDIO
AuthRequired
UpdatedApr 20, 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.