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

MailboxValidator

mailboxvalidator/mcp-mailboxvalidator
authSTDIOregistry active
Summary

Connects Claude to the MailboxValidator API for email verification workflows. Exposes three tools: validate_email runs comprehensive checks including syntax, DNS/MX records, greylisting, disposable providers, and suppression lists. check_disposable_email and check_free_email handle those specific lookups. Requires a MailboxValidator API key (free tier gives 300 queries monthly). Reach for this when you need to validate user signups, clean email lists, or filter out temporary addresses in your prompts. Runs via npx with stdio transport, so setup is just adding credentials to your Claude config and restarting.

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 →

MailboxValidator MCP server

This is a simple Model Context Protocol (MCP) server implementation for MailboxValidator API. It will return validation result for an email address.

mcp-mailboxvalidator MCP server

Features

  • Comprehensive Email Validation: Checking an email address to see if an email is reachable by checking the syntax, DNS, MX server, high risk, suppressed list, and more.
  • Disposable Email: Checking an email address to see if it's from a temporary/disposable email provider.
  • Free Email: Checking an email address to see if it's from a free email provider.

Requirement

This MCP server requires an API key. You can also sign up for a free API key and enjoy up to 300 queries per month.

The setup also uses Node.js and npm, which can be downloaded at Node.js website.

Setup

Follow the steps to use this MCP server with Claude Desktop:

  1. Download the repository to your local.
  2. Run the following commands while inside the project folder to install dependencies and build the server.
npm install
npm run build
  1. Make sure you have installed Claude Desktop. If you haven't, kindly download from here for Windows and macOS users, or follow this guide for Linux users.
  2. Open claude_desktop_config.json. If you don't have that file yet, follow this guide to create one.
  3. Add the following to your claude_desktop_config.json:
{
  "mcpServers": {
    "mailboxvalidator": {
      "command": "node",
      "args": [
        "C:\\path\\to\\mcp-mailboxvalidator\\build\\index.js"
      ],
      "env": {
        "MAILBOXVALIDATOR_API_KEY": "<YOUR_API_KEY>"
      }
    }
  }
}
  1. Remember to replace the path for the index.js with your actual path to your MailboxValidator MCP server on your local machine.
  2. To get your API key, just login to your dashboard and get it from there. Replace the <YOUR_API_KEY> in the above with your actual API key.
  3. Restart the Claude Desktop after saving the changes, and you should see it appear in the Search and tools menu.

Usage

Just enter your query about the email address in a chat in Claude Desktop. Some of example queries are:

  • Is (email) a valid email address?
  • Is (email) a fake email?
  • Is (email) a free email?

In Claude Desktop, the model will automatically generate the output based on the result returned by MailboxValidator MCP server.

Environment Variable

MAILBOXVALIDATOR_API_KEY

The free MailboxValidator API key allows you to query up to 300 emails per month. If you require more, you can sign up for a paid API plan.

Tool

validate_email

Description Validates the email address given. It helps users to determine if an email address is potentially reachable by checking the syntax, DNS, MX server, disposable list and more.

Arguments email (str): The email address to validate.

Returns A JSON string containing the validation data. The result includes the following fields:

  • Syntax: Checks that the email address conforms to how an email address should look like.
  • DNS & MX Server: Checks that the domain DNS has an MX server specified.
  • Network & Connectivity: Attempts connection to the MX server to make sure it's operational.
  • Greylisting: Checks if MX server is using greylisting that could cause email sent to that address to bounce.
  • Disposable List: Checks if the email domain is from a temporary or disposable email provider.
  • High Risk & Suppressed List: Checks if email username looks high-risk or if the email address is found in a suppression list.
  • Others: Checks the reputation score for the email and more..

If the request fails, the tool will return an error message as a string.

check_disposable_email

Description Checks if the email address given is from a disposable email provider.

Arguments email (str): The email address to check.

Returns A JSON string containing the disposable email data. The result includes the following fields:

  • Disposable List: Checks if the email domain is from a temporary or disposable email provider.

If the request fails, the tool will return an error message as a string.

check_free_email

Description Checks if the email address given is from a free email provider.

Arguments email (str): The email address to check.

Returns A JSON string containing the free email data. The result includes the following fields:

  • Free Email List: Checks if the email domain is from a free email provider.

If the request fails, the tool will return an error message as a string.

License

See the LICENSE file.

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

MAILBOXVALIDATOR_API_KEY*secret

Your MailboxValidator API key.

Categories
Communication & Messaging
Registryactive
Packagemcp-mailboxvalidator
TransportSTDIO
AuthRequired
UpdatedMay 28, 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.