drip-mcp-server

GravityKit/drip-mcp-server

3.2

If you are the rightful owner of drip-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

Drip MCP Server is a Model Context Protocol server that integrates with the Drip email marketing platform, enabling AI assistants to manage subscribers, automate campaigns, and track analytics.

Tools
5
Resources
0
Prompts
0

Drip MCP Server

npm version License: MIT Node.js Version MCP Protocol

A Model Context Protocol (MCP) server that provides seamless integration with the Drip email marketing automation platform. This server enables AI assistants like Claude to interact with Drip's API for subscriber management, campaign automation, and analytics tracking.

๐ŸŒŸ Features

Core Capabilities

  • ๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘ Subscriber Management - Create, update, delete, and search subscribers with full custom field support
  • ๐Ÿท๏ธ Tag Operations - Apply and remove tags for segmentation and automation
  • ๐Ÿ“ง Campaign Management - List campaigns and manage subscriber enrollments
  • ๐Ÿ”„ Workflow Automation - Control workflows and subscriber participation
  • ๐Ÿ“Š Event Tracking - Track custom events for behavioral automation
  • ๐Ÿ’ฐ E-commerce Integration - Record purchases and conversions
  • ๐Ÿ“ Form & Broadcast Access - Retrieve forms and broadcast information
  • โšก Batch Operations - Efficiently handle bulk subscriber operations
  • ๐Ÿ” Advanced Search - Find subscribers using complex filter criteria

Technical Features

  • ๐Ÿ›ก๏ธ Automatic Rate Limiting - Handles Drip's API limits with exponential backoff
  • ๐Ÿ”ง Smart Field Mapping - Automatically organizes standard and custom fields
  • ๐ŸŽฏ Error Handling - Detailed error messages for debugging
  • ๐Ÿงช Comprehensive Testing - Unit and integration test suites included
  • ๐Ÿ” MCP Inspector Support - Built-in debugging interface for development

๐Ÿ“ฆ Installation

Prerequisites

  • Node.js 20.0.0 or higher
  • npm or yarn package manager
  • Drip account with API access
  • MCP-compatible client (e.g., Claude Desktop)

Package Installation

# Using npm
npm install @gravitykit/drip-mcp-server

# Using yarn
yarn add @gravitykit/drip-mcp-server

# For global installation
npm install -g @gravitykit/drip-mcp-server

From Source

# Clone the repository
git clone https://github.com/GravityKit/drip-mcp-server.git
cd drip-mcp-server

# Install dependencies
npm install

# Set up environment variables
cp .env.example .env
# Edit .env with your credentials

๐Ÿ”‘ Configuration

Getting Your API Credentials

  1. API Key:

  2. Account ID:

    • Found in Settings โ†’ General Info
    • Also visible in your Drip dashboard URL
    • Format: Numeric ID (e.g., 12345678)

Environment Variables

Create a .env file in the project root:

DRIP_API_KEY=your_api_key_here
DRIP_ACCOUNT_ID=your_account_id_here

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "drip": {
      "command": "npx",
      "args": ["@gravitykit/drip-mcp-server"],
      "env": {
        "DRIP_API_KEY": "your_api_key_here",
        "DRIP_ACCOUNT_ID": "your_account_id_here"
      }
    }
  }
}

Alternative: Using Local Installation

{
  "mcpServers": {
    "drip": {
      "command": "node",
      "args": ["/path/to/drip-mcp-server/src/index.js"],
      "env": {
        "DRIP_API_KEY": "your_api_key_here",
        "DRIP_ACCOUNT_ID": "your_account_id_here"
      }
    }
  }
}

๐Ÿš€ Usage

Quick Start

Once configured, the MCP server exposes Drip functionality through standardized tools. Your AI assistant can use natural language to interact with these tools.

Example Prompts for AI Assistants
"Add john@example.com to my Drip subscribers with the tag 'customer'"

"Find all subscribers tagged as 'vip' who joined this month"

"Track a 'Product Viewed' event for user@example.com with product_id ABC123"

"Start the 'Welcome Series' workflow for new@subscriber.com"

"Show me the last 10 unsubscribes and their reasons"

Available Tools

Subscriber Management
ToolDescription
drip_create_subscriberCreate or update a subscriber
drip_list_subscribersList all subscribers with pagination
drip_get_subscriberGet a specific subscriber by ID or email
drip_delete_subscriberPermanently delete a subscriber
drip_search_subscribersAdvanced search with filters
drip_batch_create_subscribersBulk create/update (up to 1000)
Tags & Segmentation
ToolDescription
drip_tag_subscriberApply tags to a subscriber
drip_remove_tagRemove a tag from a subscriber
Campaigns & Workflows
ToolDescription
drip_list_campaignsList all campaigns
drip_subscribe_to_campaignAdd subscriber to campaign
drip_list_workflowsList all workflows
drip_activate_workflowActivate a workflow
drip_pause_workflowPause a workflow
drip_start_workflowStart workflow for subscriber
drip_remove_from_workflowRemove subscriber from workflow
Analytics & Tracking
ToolDescription
drip_track_eventTrack custom events
drip_record_conversionRecord a conversion
drip_record_purchaseRecord a purchase
drip_recent_unsubscribesGet recent unsubscribes
drip_unsubscribe_statsGet unsubscribe statistics
Forms & Broadcasts
ToolDescription
drip_list_formsList all forms
drip_get_formGet specific form details
drip_list_broadcastsList all broadcasts
drip_get_broadcastGet specific broadcast details

Code Examples

Creating a Subscriber
{
  "email": "user@example.com",
  "first_name": "John",
  "last_name": "Doe",
  "tags": ["customer", "newsletter"],
  "custom_fields": {
    "company": "Acme Corp",
    "plan": "premium"
  },
  "time_zone": "America/New_York",
  "eu_consent": "granted"
}
Tracking an Event
{
  "email": "user@example.com",
  "action": "Viewed Product",
  "properties": {
    "product_id": "SKU-12345",
    "product_name": "Premium Widget",
    "price": 99.99,
    "category": "Widgets"
  },
  "occurred_at": "2024-01-15T10:30:00Z"
}
Advanced Search
{
  "tags": ["vip", "customer"],
  "created_after": "2024-01-01T00:00:00Z",
  "custom_field_filters": {
    "lifetime_value": { "greater_than": 1000 },
    "plan": "premium"
  },
  "status": "active",
  "per_page": 100
}

๐Ÿงช Development

Running in Development Mode

# Watch mode with auto-restart
npm run dev

# Standard mode
npm start

Using the MCP Inspector

The MCP Inspector provides a web-based UI for testing and debugging:

# Launch the inspector
npm run inspect

Features:

  • Interactive tool testing
  • Real-time message monitoring
  • Schema validation
  • Request/response inspection

Access the inspector at http://localhost:5173 after running the command.

Testing

# Run all tests
npm run test:all

# Run specific test suites
npm test                    # Core functionality
npm run test:unit          # Unit tests (no network)
npm run test:validation    # Input validation
npm run test:names         # Field handling
npm run test:unsubscribes  # Unsubscribe tracking

Project Structure

drip-mcp-server/
โ”œโ”€โ”€ src/
โ”‚   โ”œโ”€โ”€ index.js           # MCP server implementation
โ”‚   โ”œโ”€โ”€ drip-client.js     # Drip API client wrapper
โ”‚   โ””โ”€โ”€ tests/             # Test suites
โ”‚       โ”œโ”€โ”€ run.js         # Test runner
โ”‚       โ”œโ”€โ”€ drip-client.test.js
โ”‚       โ”œโ”€โ”€ server-tools.test.js
โ”‚       โ””โ”€โ”€ server-e2e.test.js
โ”œโ”€โ”€ package.json
โ”œโ”€โ”€ mcp.json              # MCP Inspector config
โ”œโ”€โ”€ .env.example          # Environment template
โ”œโ”€โ”€ LICENSE               # MIT license
โ””โ”€โ”€ README.md             # Documentation

๐Ÿ”’ Security Best Practices

  1. API Key Management

    • Never commit API keys to version control
    • Use environment variables or secure key management
    • Rotate API keys regularly
    • Use least-privilege API keys when possible
  2. Data Protection

    • Handle subscriber data according to privacy regulations (GDPR, CCPA)
    • Implement proper consent management
    • Use secure connections (HTTPS) only
  3. Rate Limiting

    • Respect Drip's API limits (3,600 requests/hour)
    • Implement exponential backoff for retries
    • Monitor API usage to avoid limit violations

๐Ÿ› Troubleshooting

Common Issues

Authentication Errors (401)
  • Cause: Invalid API key or account ID
  • Solution: Verify credentials in Drip settings and environment variables
Permission Errors (403)
  • Cause: API key lacks required permissions
  • Solution: Check API key permissions in Drip account settings
Rate Limiting (429)
  • Cause: Exceeding API rate limits
  • Solution: Server automatically retries with backoff; reduce request frequency if persistent
Field Mapping Issues
  • Cause: Incorrect field placement (standard vs. custom)
  • Solution: Server handles automatically; check field names match Drip configuration

Debug Mode

Enable detailed logging:

DEBUG=* npm start

๐Ÿ“š API Documentation

Field Types

Standard Fields (Root Level)
  • email (required)
  • first_name
  • last_name
  • user_id
  • time_zone
  • eu_consent
  • eu_consent_message
Custom Fields (Nested)

All other fields are automatically placed in custom_fields:

  • company
  • phone
  • address1, address2
  • city, state, zip, country
  • Any custom data fields

Rate Limits

Operation TypeLimitWindow
Individual Requests3,600Per hour
Batch Operations50,000Per hour
Concurrent Requests50Simultaneous

Error Responses

Status CodeDescriptionAction Required
401UnauthorizedCheck API credentials
403ForbiddenVerify permissions
422Validation ErrorFix request parameters
429Rate LimitedWait and retry
500Server ErrorContact support if persistent

โ“ Frequently Asked Questions

Can I create broadcasts through the API?

No, the Drip API provides read-only access to broadcasts. Use the Drip web interface to create broadcasts.

How do I handle EU consent?

Use the eu_consent field with values: granted, denied, or pending. Include eu_consent_message for audit trails.

What's the difference between campaigns and workflows?

  • Campaigns: Email series with fixed timing
  • Workflows: Automated sequences triggered by events or conditions

Can I bulk delete subscribers?

No, Drip requires individual deletion for data safety. Use drip_delete_subscriber for each subscriber.

How do I track revenue?

Use drip_record_purchase with the value field in cents (e.g., 9999 for $99.99).

๐Ÿค Contributing

We welcome contributions! Please follow these guidelines:

  1. Fork the repository and create a feature branch
  2. Write tests for new functionality
  3. Follow the code style (ESM, async/await, clear naming)
  4. Update documentation for API changes
  5. Submit a pull request with a clear description

Development Guidelines

  • Use Node.js 20+ with ES modules
  • Maintain test coverage above 80%
  • Follow semantic versioning
  • Write descriptive commit messages
  • Keep dependencies minimal

๐Ÿ“„ License

This project is licensed under the MIT License - see the file for details.

๐Ÿ†˜ Support

For This MCP Server

For Drip API

For MCP Protocol

๐Ÿ™ Acknowledgments


Made with โค๏ธ by GravityKit