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

latest
Source
npmnpm
Version
0.3.4
Version published
Maintainers
1
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

claude mcp add kraiter -- npx -y @kraiter/mcp-server

Then set the environment variable in your project's .claude/settings.json:

{
  "env": {
    "KRAITER_API_KEY": "your-api-key-here"
  }
}

Or add the full server config manually:

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

Windsurf

Add to ~/.codeium/windsurf/mcp_config.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 (62)

ResourceToolsDescription
Contacts12Create, read, update, delete, upsert contacts; list sends, sequences, segments, and timeline
Events3Track events and list event history
Templates7Upsert email templates, preview renders, and manage versions
Sequences10Upsert drip campaigns, manage contact enrolment, versions, and dry runs
Campaigns9Organise sequences and templates into campaigns
Segments5Define and manage audience segments
Domains5Register and verify sending domains
Send4Send transactional emails and view send history
Scheduled Sends2List and inspect scheduled sends
Metrics5Tenant, sequence, and template metrics

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"
  • "Show me the timeline for bob@example.com"

Documentation

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

Licence

MIT

Keywords

kraiter

FAQs

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