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

@kikin/mailsac-mcp

v1.0.1

Published

MCP server for Mailsac email testing service

Readme

Mailsac MCP Server

A comprehensive Model Context Protocol (MCP) server that provides access to all major Mailsac API endpoints for email testing and management.

Prerequisites

  1. Mailsac Account: Sign up at mailsac.com
  2. API Key: Get your API key from Mailsac API Keys page
  3. Node.js: Version 16 or higher

Installation

Option 1: Install from npm (Recommended)

npm install -g @kikin/mailsac-mcp

Option 2: Clone and build from source

  1. Clone this repository:
git clone <repository-url>
cd mailsac-mcp
  1. Install dependencies:
npm install
  1. Compile TypeScript:
npx tsc

Usage with Claude Code

Add this MCP server to Claude Code:

claude mcp add mailsac -s user npx @kikin/mailsac-mcp --env MAILSAC_KEY=your_api_key_here

Usage with Claude Desktop

Add this MCP server to your Claude Desktop configuration file:

Configuration file locations:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%/Claude/claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

Configuration:

{
  "mcpServers": {
    "mailsac": {
      "command": "npx",
      "args": ["@kikin/mailsac-mcp"],
      "env": {
        "MAILSAC_KEY": "your_api_key_here"
      }
    }
  }
}

Usage with Other MCP Clients

You can also use this server with any other MCP-compatible client by running:

MAILSAC_KEY=your_api_key_here npx @kikin/mailsac-mcp

Example Usage

Once connected to Claude Desktop, you can use natural language to interact with Mailsac:

"Create a new email address [email protected] and set up forwarding to [email protected]"

"List all messages in the inbox for [email protected]"

"Get the plaintext content of message ID abc123 from [email protected]"

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

"Delete all messages from the [email protected] inbox"

"Show me the top public email domains by message volume"

Development

This project uses FastMCP for MCP server development.

Development Mode with Inspector

For development with the FastMCP inspector (recommended):

npx fastmcp dev index.ts

This provides:

  • Hot reload on file changes
  • Web-based inspector at http://localhost:3001
  • Interactive tool testing
  • Real-time debugging

Alternative: Manual Development

# Compile TypeScript
npx tsc

# Run the server
MAILSAC_KEY=your_api_key_here node index.js

Watch Mode

npx tsc --watch

FastMCP Inspector

Use the FastMCP inspector for interactive development:

npx fastmcp inspect index.ts

License

MIT - Same as the Mailsac TypeScript SDK

Support

Related Links