Featured

Deploy OpenClaw in 60 seconds β€” 20% off logoDeploy OpenClaw in 60 seconds β€” 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger β†’
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger β†’
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free β†’
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now β†’
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data β€” no proxies, no parsers, no maintenance.

Start building free β†’
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it β€” secured from day one.

Get it set up for you β†’
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free β†’
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here β†’

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

live-direct-marketing/ldm-inbox-check-mcp MCP server](https://glama.ai/mcp/servers/live-direct-marketing/ldm-inbox-check-mcp/badges/score.svg)](https://glama.ai/mcp/servers/live-direct-marketing/ldm-inbox-check-mcp) πŸ“‡ ☁️ - Email inbox placement testing...

README.md

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](https://www.npmjs.com/package/ldm-inbox-check-mcp) ![npm downloads](https://www.npmjs.com/package/ldm-inbox-check-mcp) ![License: MIT](LICENSE) ![MCP](https://modelcontextprotocol.io)

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:

| Tool | Description | | --- | --- | | inbox_check_create | Create a placement test; returns seed addresses to send your email to. | | inbox_check_status | Get per-provider placement, SPF/DKIM/DMARC, screenshots. | | inbox_check_list | List recent tests with cursor pagination. | | inbox_check_delete | Delete a test and its screenshots. | | inbox_check_me | Inspect 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

| Variable | Required | Default | | --- | --- | --- | | INBOX_CHECK_API_KEY | yes | β€” | | INBOX_CHECK_BASE_URL | no | https://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.

  1. 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.

  1. Template change review β€” compare placement of an old vs new email

template across 9 providers in a single agent run.

  1. Shared-IP reputation monitoring β€” schedule periodic tests and have

the agent alert when Spam rate crosses a threshold.

  1. Transactional mail audit β€” verify that password-reset / receipt

emails actually reach the Inbox (not Promotions) on every major provider.

Related

License

MIT Β© Live Direct Marketing

See related servers & alternatives β†’

Related MCP servers

Browse all β†’

Related guides

Hand-picked reading to help you choose and use Communication servers.