You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@kraiter/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kraiter/mcp-server

MCP server for the Kraiter email platform

Source
npmnpm
Version
0.1.7
Version published
Weekly downloads
105
-21.64%
Maintainers
1
Weekly downloads
 
Created
Source

@kraiter/mcp-server

Model Context Protocol (MCP) server for the Kraiter email platform. Lets Claude and other AI assistants manage contacts, send emails, run sequences, and more — via natural language.

Installation

npm install -g @kraiter/mcp-server

Configuration

The server requires a KRAITER_API_KEY environment variable. Generate one from Settings in the dashboard.

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "kraiter": {
      "command": "npx",
      "args": ["-y", "@kraiter/mcp-server"],
      "env": {
        "KRAITER_API_KEY": "your-api-key-here"
      }
    }
  }
}

Claude Code

Add to your project's .claude/settings.json:

{
  "mcpServers": {
    "kraiter": {
      "command": "npx",
      "args": ["-y", "@kraiter/mcp-server"],
      "env": {
        "KRAITER_API_KEY": "your-api-key-here"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json or via Cursor Settings > MCP:

{
  "mcpServers": {
    "kraiter": {
      "command": "npx",
      "args": ["-y", "@kraiter/mcp-server"],
      "env": {
        "KRAITER_API_KEY": "your-api-key-here"
      }
    }
  }
}

Available tools (49)

ResourceToolsDescription
Contacts7Create, read, update, delete, and upsert contacts
Events4Track events and list event history
Templates6Manage email templates and preview renders
Sequences7Manage drip campaigns and contact enrolment
Campaigns9Organise sequences and templates into campaigns
Segments7Define audience segments and check membership
Domains5Register and verify sending domains
Send4Send transactional emails and view send history

Example usage

Once configured, you can ask Claude things like:

  • "Create a contact for alice@example.com with firstName Alice"
  • "Send a welcome email to alice@example.com using the welcome-template"
  • "List all active campaigns"
  • "Check if bob@example.com is in the premium-users segment"

Documentation

Full documentation is available at kraiter.com/docs/mcp-server.

Licence

MIT

Keywords

kraiter

FAQs

Package last updated on 11 Feb 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