npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@orristech/antitempmail-mcp

v1.0.0

Published

MCP server for temporary email validation using AntiTempMail API

Readme

AntiTempMail MCP Server

MCP npm License: MIT

Model Context Protocol (MCP) server for validating email addresses against temporary/disposable email providers using the AntiTempMail API.

Works with Claude Desktop, Cline, and any MCP-compatible client.

🚀 Quick Start

Installation

npm install -g @antitempmail/mcp-server

Configuration

Claude Desktop

Add to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "antitempmail": {
      "command": "antitempmail-mcp",
      "env": {
        "ANTITEMPMAIL_API_KEY": "your_api_key_here"
      }
    }
  }
}

Cline (VS Code Extension)

Add to Cline's MCP settings:

{
  "mcpServers": {
    "antitempmail": {
      "command": "antitempmail-mcp",
      "env": {
        "ANTITEMPMAIL_API_KEY": "your_api_key_here"
      }
    }
  }
}

Get Your API Key

Sign up at AntiTempMail and get your API key from the Dashboard.

🛠️ Available Tools

check_email

Validate a single email address.

Input:

{
  "email": "[email protected]"
}

Output:

{
  "email": "[email protected]",
  "isTemporary": true,
  "domain": "tempmail.com",
  "provider": "TempMail",
  "risk": "high",
  "confidence": 98
}

check_emails_bulk

Validate multiple emails at once (up to 100).

Input:

{
  "emails": [
    "[email protected]",
    "[email protected]",
    "[email protected]"
  ]
}

Output:

{
  "results": [
    {
      "email": "[email protected]",
      "isTemporary": false,
      "domain": "gmail.com",
      "risk": "low"
    },
    {
      "email": "[email protected]",
      "isTemporary": true,
      "domain": "tempmail.com",
      "provider": "TempMail",
      "risk": "high"
    },
    {
      "email": "[email protected]",
      "isTemporary": true,
      "domain": "10minutemail.com",
      "provider": "10MinuteMail",
      "risk": "high"
    }
  ],
  "summary": {
    "total": 3,
    "temporary": 2,
    "legitimate": 1
  }
}

💡 Usage Examples

With Claude Desktop

"Check if [email protected] is a temporary email"

"Validate these emails: [email protected], [email protected], [email protected]"

"I have a list of 50 emails from a signup form. Can you check which ones are temporary?"

With Cline

Ask Cline to validate emails while coding:

"Before processing this user registration, check if their email is temporary"

"Add email validation to this signup endpoint using the antitempmail tool"

🔧 Development

Build from Source

git clone https://github.com/EricMymj/antitempmail-mcp.git
cd antitempmail-mcp
npm install
npm run build

Run Locally

export ANTITEMPMAIL_API_KEY="your_api_key_here"
node dist/index.js

Test with MCP Inspector

npx @modelcontextprotocol/inspector antitempmail-mcp

📊 API Limits

| Tier | Requests/Day | Price | |------|--------------|-------| | Free | 100 | $0 | | Pro | 10,000 | $9/mo | | Enterprise | Custom | Contact |

Check your usage at: https://antitempmail.com/dashboard/credits

🤝 Contributing

Contributions welcome! Please open an issue or PR.

📄 License

MIT License - see LICENSE for details.

🔗 Links

🆘 Troubleshooting

"ANTITEMPMAIL_API_KEY environment variable is required"

Make sure you've added your API key to the MCP server configuration. Get your key from https://antitempmail.com/dashboard

"API error (401): Unauthorized"

Your API key is invalid or expired. Generate a new one from the dashboard.

"API error (429): Too Many Requests"

You've exceeded your rate limit. Upgrade your plan or wait for the limit to reset.

Server not showing in Claude Desktop

  1. Restart Claude Desktop completely
  2. Check the config file syntax (must be valid JSON)
  3. Verify the command path is correct
  4. Check Claude Desktop logs for errors