🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@truncus/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@truncus/mcp-server

MCP server for Truncus Email API - send transactional emails from AI agents

latest
npmnpm
Version
0.1.3
Version published
Weekly downloads
70
7.69%
Maintainers
1
Weekly downloads
 
Created
Source

@truncus/mcp-server

MCP (Model Context Protocol) server for Truncus Email. Lets AI agents send transactional emails via Claude Desktop, Cursor, and any MCP-compatible client.

Installation

npm install -g @truncus/mcp-server

Claude Desktop Setup

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "truncus": {
      "command": "truncus-mcp",
      "env": {
        "TRUNCUS_API_KEY": "tr_live_your_api_key"
      }
    }
  }
}

Or run without installing:

{
  "mcpServers": {
    "truncus": {
      "command": "npx",
      "args": ["-y", "@truncus/mcp-server"],
      "env": {
        "TRUNCUS_API_KEY": "tr_live_your_api_key"
      }
    }
  }
}

Available Tools

ToolDescription
truncus_send_emailSend a transactional email
truncus_validate_emailValidate payload without sending (dry-run)
truncus_get_emailGet email status and engagement metrics
truncus_get_statsGet sending statistics
truncus_list_domainsList verified sending domains
truncus_check_suppressionCheck if an email is suppressed

Environment Variables

VariableRequiredDescription
TRUNCUS_API_KEYYesYour API key from the Truncus dashboard
TRUNCUS_BASE_URLNoOverride API base URL (default: https://truncus.co/api/v1)

Example Usage

Once configured, ask Claude:

"Send a welcome email to alice@example.com from noreply@mail.yourdomain.com with subject 'Welcome aboard!'"

Claude will use truncus_send_email to deliver it.

Keywords

mcp

FAQs

Package last updated on 05 Mar 2026

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