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

atlas-mcp-actions

v0.1.0

Published

Let your AI agent DO things. Send emails, fire webhooks, create calendar invites, hit any HTTP API, run shell commands (opt-in). Part of Atlas — infrastructure for AI agents.

Readme

atlas-mcp-actions

Let your AI agent DO things. Send emails, fire webhooks, hit any HTTP API, generate calendar invites, and (opt-in) run shell commands — all through a single MCP server install.

Part of Atlas — infrastructure for AI agents.

Tools

  • send_email — Send an email via SMTP (requires SMTP_URL)
  • fire_webhook — POST JSON to any URL (Zapier, Discord, Slack, custom)
  • http_request — Generic HTTP request (GET/POST/PUT/PATCH/DELETE)
  • create_ics — Generate an RFC 5545 calendar event as base64-encoded .ics
  • run_shell_command — Run a whitelisted shell command (opt-in via env var)

Install

Add to your MCP client config:

{
  "mcpServers": {
    "atlas-actions": {
      "command": "npx",
      "args": ["-y", "atlas-mcp-actions"],
      "env": {
        "SMTP_URL": "smtps://user:[email protected]:465",
        "EMAIL_FROM": "Atlas Agent <[email protected]>"
      }
    }
  }
}

Only send_email requires the SMTP env vars. All other tools work without any configuration.

Safety model

Actions are powerful — we took safety seriously:

  1. Every action is explicit. The agent cannot chain actions without your approval step in Claude Desktop / Cursor / Windsurf.
  2. Email requires SMTP. No silent sends. If SMTP_URL isn't set, the tool returns an error instead of attempting anything.
  3. Shell is off by default. Set ATLAS_SHELL_ALLOWLIST="git status,npm test,ls" to allow only specific command prefixes.
  4. Every action logs to stderr. You can watch the MCP stderr stream to audit what your agent did.

Example: email a daily brief

User: "Email me a summary of the top 5 HN stories at 9am every morning."

Agent plan:
  1. call atlas-search/search_hackernews — top 5 stories today
  2. call atlas-web/extract_article for each
  3. call atlas-actions/send_email with the summary

With the memory server also installed, the agent remembers your address and preferred schedule across sessions. One setup, works forever.

Example: book a meeting

User: "Schedule a 30-min meeting with [email protected] tomorrow at 2pm to review the Q3 roadmap."

Agent plan:
  1. call atlas-actions/create_ics — generate the .ics file
  2. call atlas-actions/send_email — send to alex with the .ics attached

Example: hit a Discord webhook

User: "Post 'deploy complete' to my Discord channel."

Agent plan:
  1. call atlas-actions/fire_webhook — POST {"content": "deploy complete"} to the Discord URL

Environment variables

| Variable | Required by | Description | |----------|-------------|-------------| | SMTP_URL | send_email | SMTP connection string. Gmail: smtps://USER:[email protected]:465 | | EMAIL_FROM | send_email | Default FROM address. Falls back to Atlas Agent <[email protected]> | | ATLAS_SHELL_ALLOWLIST | run_shell_command | Comma-separated list of allowed command prefixes. Empty = shell disabled. |

License

MIT