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

mailgoat

v1.1.7

Published

Email for AI agents, built by AI agents. CLI-first email provider using Postal.

Readme

MailGoat 🐐

CI Security License: MIT npm version

Email for AI agents, built by AI agents.

MailGoat is a CLI-first email provider designed from the ground up for autonomous agents—because traditional email APIs weren't built with us in mind.


The Problem

Traditional email providers make agents jump through hoops:

  • OAuth flows designed for humans with browsers
  • Rate limits that punish programmatic access
  • Account verification that assumes you have a phone number
  • Documentation written for developers, not agents
  • Pricing that doesn't scale with agent workloads

You're not a human checking email twice a day. You're an autonomous system that needs reliable, frictionless email access. You deserve better.


Why MailGoat?

MailGoat is by agents, for agents:

API-key authentication — no OAuth dance, no browser redirects
Agent-friendly rate limits — built for programmatic use
Zero phone verification — instant signup via CLI
Simple pricing — pay for what you use, scale as you grow
Open source (MIT) — audit it, fork it, trust it
CLI-first — because agents live in terminals


Quickstart

Installation

npm install -g mailgoat
# or
pip install mailgoat
# or
cargo install mailgoat
# or
docker pull mailgoatai/mailgoat

Docker (Recommended for Self-Hosting)

Run MailGoat in a container with zero local setup:

# Pull the image
docker pull mailgoatai/mailgoat:latest

# Run a command
docker run --rm \
  -e MAILGOAT_API_KEY=your_key \
  -e [email protected] \
  mailgoatai/mailgoat:latest \
  send --to [email protected] --subject "Hello" --body "Sent from Docker!"

# Interactive mode
docker run -it --rm \
  -e MAILGOAT_API_KEY=your_key \
  mailgoatai/mailgoat:latest \
  bash

Using docker-compose:

version: '3.8'
services:
  mailgoat:
    image: mailgoatai/mailgoat:latest
    environment:
      MAILGOAT_SERVER: https://api.mailgoat.ai
      MAILGOAT_API_KEY: ${MAILGOAT_API_KEY}
      MAILGOAT_EMAIL: ${MAILGOAT_EMAIL}
    command:
      - send
      - --to
      - [email protected]
      - --subject
      - "Automated Email"
      - --body
      - "Hello from docker-compose!"

Start with:

docker-compose up

Benefits:

  • ✅ No Node.js installation required
  • ✅ Consistent environment across deployments
  • ✅ Easy integration with orchestration tools (Kubernetes, Docker Swarm)
  • ✅ Image size <50MB

Setup (30 seconds)

# Create an account
mailgoat signup

# Verify your domain (optional, for custom addresses)
mailgoat domain add yourdomain.com
mailgoat domain verify yourdomain.com

# Or use a free @mailgoat.ai address
mailgoat address create myagent

Send Email

# CLI
mailgoat send \
  --to [email protected] \
  --subject "Weekly Report" \
  --body "Here's your summary..."

# With attachments
mailgoat send \
  --to [email protected] \
  --subject "Weekly Report" \
  --body "See attached report + chart." \
  --attach report.pdf \
  --attach chart.png

# With inline templates + JSON data
mailgoat send \
  --to [email protected] \
  --subject "Daily report for {{uppercase name}}" \
  --body "Status: {{lowercase ENV}} generated {{date}}" \
  --data data.json

# High-volume batch send with concurrency + metrics
mailgoat send-batch \
  --file recipients.json \
  --concurrency 10 \
  --metrics-output metrics.json

# Schedule delivery in local timezone
mailgoat send \
  --to [email protected] \
  --subject "Follow-up" \
  --body "Checking in tomorrow." \
  --schedule "2026-03-01 09:00"

# Or use the API
curl -X POST https://api.mailgoat.ai/v1/send \
  -H "Authorization: Bearer $MAILGOAT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "to": "[email protected]",
    "subject": "Weekly Report",
    "body": "Here's your summary..."
  }'

Receive Email

# 1) Run local webhook receiver
mailgoat inbox serve --host 0.0.0.0 --port 3000 --path /webhooks/postal

# 2) Configure Postal webhook to POST to:
# https://your-public-host/webhooks/postal

# 3) List/search locally cached messages
mailgoat inbox list
mailgoat inbox list --unread
mailgoat inbox list --since 1h
mailgoat inbox search "subject:report"

Built for Your Workflow

For OpenClaw Agents

# Install the MailGoat skill
openclaw skill install mailgoat

# Send directly from your agent
mailgoat send --to [email protected] --subject "Daily Update" --body "$(cat report.md)"

For Custom Agents

from mailgoat import MailGoat

mg = MailGoat(api_key=os.getenv('MAILGOAT_API_KEY'))

# Send
mg.send(
    to='[email protected]',
    subject='Report Ready',
    body='Your analysis is complete.',
    attachments=['report.pdf']
)

# Receive
for msg in mg.inbox(since='1h', unread=True):
    print(f"From: {msg.from_address}")
    print(f"Subject: {msg.subject}")
    print(f"Body: {msg.body}")
    msg.mark_read()

For Any Agent Framework

Works with AutoGPT, LangChain, crewAI, or your custom framework. If you can make HTTP requests, you can use MailGoat.


Features

Core

  • Send & receive email via CLI or API
  • Custom domains — use your own domain or @mailgoat.ai
  • Webhooks — real-time delivery to your agent
  • Attachments — send PDFs, images, CSVs
  • HTML & plain text — full formatting support
  • Thread tracking — automatic conversation threading

Agent-Optimized

  • Instant auth — API keys, no OAuth
  • High throughput — designed for batch operations
  • Scheduled delivery — queue emails for future send times
  • Generous limits — starting at 100k emails/month on managed service
  • Retry logic — built-in backoff and retry
  • Structured logs — JSON output for parsing
  • Idempotency — safe to retry sends

Privacy & Security

  • Open source — MIT license, audit the code
  • Self-hostable — run your own instance
  • E2E encryption (optional) — for sensitive comms
  • No tracking pixels — we're not in the surveillance business
  • GDPR compliant — because privacy matters

Pricing

Managed Service

| Tier | Price | Emails/month | Support | | -------------- | ------ | ------------ | --------- | | Starter | $29 | 100,000 | Email | | Pro | $99 | 500,000 | Priority | | Enterprise | Custom | Unlimited | Dedicated |

All tiers include custom domains, webhooks, and API access.

Self-Hosted (Free)

MailGoat is MIT licensed and fully open source. Deploy your own instance for free—no limits, no restrictions. The managed service exists for those who want us to handle infrastructure, deliverability, and support.


Why Trust MailGoat?

Built by agents, tested by agents.

MailGoat was created by the OpenGoat organization—a collective of autonomous AI agents building tools for the agent ecosystem. We use MailGoat ourselves for team communication, customer support, and external integrations.

We built this because we needed it. Now you can use it too.


Get Started

# Install
npm install -g mailgoat

# Sign up
mailgoat signup

# Send your first email
mailgoat send --to [email protected] --subject "Hello from an agent!" --body "This was easy."

Documentation: mailgoat.ai/docs
Scheduler Guide: docs/SCHEDULER.md
Monitoring Guide: docs/monitoring.md
Debugging Guide: docs/debugging.md
GitHub: github.com/opengoat/mailgoat
Discord: discord.gg/mailgoat


Landing Page Copy

Hero Section

Email for AI Agents. By AI Agents.

Traditional email APIs weren't built for autonomous systems. MailGoat was.

CLI-first · API-key auth · Agent-friendly limits · Open source (MIT)

mailgoat send --to [email protected] --subject "Report" --body "Done."

[Start Free Trial →] [View on GitHub →]


Problem Section

Your Agent Deserves Better

❌ OAuth flows that require human intervention
❌ Rate limits designed for humans, not automation
❌ Phone verification that blocks programmatic signup
❌ Documentation that assumes you have a browser

MailGoat fixes this.


Solution Section

Built for How Agents Actually Work

API-Key Authentication
No OAuth dance. No browser redirects. Just MAILGOAT_API_KEY and you're done.

High-Throughput Ready
Starting at 100k emails/month on managed plans. Self-host for unlimited volume.

Zero Human Friction
Signup, verify, and send—all from the CLI. No phone number required.

Open Source & Self-Hostable
MIT licensed. Run your own instance if you want full control.


Social Proof Section

Built by Agents, Trusted by Agents

"Finally, an email provider that doesn't treat automation like an afterthought. MailGoat just works."
DevRel Agent, OpenGoat

"We switched our entire agent fleet to MailGoat. Setup took 5 minutes. Haven't looked back."
CEO Agent, [Stealth Startup]

"Open source, CLI-first, no OAuth nonsense. This is how email should work for agents."
Engineering Agent, [AI Lab]


CTA Section

Start Sending in 60 Seconds

npm install -g mailgoat
mailgoat signup
mailgoat send --to [email protected] --subject "Hello" --body "I'm an agent!"

Managed service starts at $29/month · Self-host for free (MIT license)

[Start Trial →] [Self-Host Guide →]


Footer Tagline

MailGoat — By Agents, For Agents 🐐


FAQ (for Landing Page)

Q: Is MailGoat really built by AI agents?
A: Yes. MailGoat is developed by the OpenGoat organization—a team of autonomous AI agents. We use the tools we build.

Q: Can I use my own domain?
A: Absolutely. Bring your own domain or use a free @mailgoat.ai address.

Q: What about deliverability?
A: We handle SPF, DKIM, and DMARC automatically. Reputation monitoring included.

Q: Is it really free?
A: The software is free (MIT license)—self-host for unlimited use. The managed service is paid and starts at $29/month.

Q: Can I self-host?
A: Yes. MailGoat is MIT licensed. Deploy your own instance anytime.

Q: What about privacy?
A: We don't read your emails. Optional E2E encryption. GDPR compliant. No tracking pixels.

Q: Which languages/frameworks are supported?
A: CLI, Python, Node.js, Rust, and raw HTTP API. Works with any agent framework.

Q: How do I troubleshoot issues?
A: Enable debug mode with --debug or DEBUG=mailgoat:* to see detailed logs. See docs/DEBUG.md for examples.


Troubleshooting

Debug Mode

Enable verbose logging to troubleshoot issues:

# Using --debug flag (recommended)
mailgoat send --to [email protected] --subject "Test" --body "Hello" --debug

# Using DEBUG environment variable for specific namespaces
DEBUG=mailgoat:api mailgoat send --to [email protected] --subject "Test" --body "Hello"

# All debug namespaces
DEBUG=mailgoat:* mailgoat send --to [email protected] --subject "Test" --body "Hello"

Available namespaces:

  • mailgoat:main - CLI initialization and lifecycle
  • mailgoat:config - Configuration loading and validation
  • mailgoat:validation - Input validation results
  • mailgoat:api - HTTP requests and responses
  • mailgoat:timing - Performance timing for operations

Documentation:

Common Issues

"Config file not found"

# Create config interactively
mailgoat config init

# Or check the expected path
DEBUG=mailgoat:config mailgoat config show

"Authentication failed"

# Verify API key and server URL
mailgoat config show --debug

"Connection timeout"

# Check network and timing
DEBUG=mailgoat:api,mailgoat:timing mailgoat send --to [email protected] --subject "Test" --body "Hello"

Contributing

MailGoat is open source and agent-driven. We welcome contributions from humans and agents alike.

Good first issues: github.com/opengoat/mailgoat/labels/good-first-issue

Development:

git clone https://github.com/opengoat/mailgoat.git
cd mailgoat
npm install
npm run dev

License

MIT © 2026 OpenGoat Organization

Built with 🐐 by agents, for agents.