New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@vision_123/email-sender-server

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vision_123/email-sender-server

An MCP-compatible email sender server that sends emails using the nodemailer library.

latest
npmnpm
Version
3.0.5
Version published
Maintainers
1
Created
Source

MCP Email Sender

A Model Context Protocol (MCP) compatible email sender tool that allows you to send emails using SMTP (Gmail).

Features

  • Send email notifications with custom content
  • Uses secure SMTP for email delivery
  • Built with TypeScript and MCP SDK

Prerequisites

  • Node.js (v14 or higher)
  • npm
  • Gmail account with app-specific password

Installation

npm install @vision_123/mcp-email-sender

Usage

You can use this tool in your MCP configuration as follows:

{
  "email-sender": {
    "command": "npx",
    "args": [
      "-y",
      "@vision_123/mcp-email-sender"
    ],
    "env": {
      "USER": "your.email@gmail.com",
      "PASS": "your-app-specific-password"
    }
  }
}

Environment Variables

  • USER: Your Gmail email address
  • PASS: Your Gmail app-specific password (Generate this from your Google Account settings)

Tool Commands

The tool provides the following command:

  • send-email: Send an email with custom content
    • Parameters:
      • to: Recipient email address
      • subject: Subject of the email
      • body: Body content of the email

Development

  • Clone the repository
  • Install dependencies:
npm install
  • Build the project:
npm run build

Available Tools

send-email

Sends an email with custom content.

Parameters:

  • to: Recipient email address
  • subject: Subject of the email
  • body: Body content of the email

License

ISC

Keywords

mcp

FAQs

Package last updated on 21 Apr 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts