New:Socket for Asana Is Now Available.Learn more
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

npmnpm
Version
0.1.1
Version published
Maintainers
1
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

Related posts