Drip MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Drip MCP ServerAdd subscriber john@example.com with tag 'customer'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Drip MCP Server
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-serverFrom 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
API Key:
Log in to your Drip account
Navigate to Settings โ My User Settings โ API
Copy your API Key
Direct link: https://www.getdrip.com/user/edit
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_hereClaude 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
Tool | Description |
| Create or update a subscriber |
| List all subscribers with pagination |
| Get a specific subscriber by ID or email |
| Permanently delete a subscriber |
| Advanced search with filters |
| Bulk create/update (up to 1000) |
Tags & Segmentation
Tool | Description |
| Apply tags to a subscriber |
| Remove a tag from a subscriber |
Campaigns & Workflows
Tool | Description |
| List all campaigns |
| Add subscriber to campaign |
| List all workflows |
| Activate a workflow |
| Pause a workflow |
| Start workflow for subscriber |
| Remove subscriber from workflow |
Analytics & Tracking
Tool | Description |
| Track custom events |
| Record a conversion |
| Record a purchase |
| Get recent unsubscribes |
| Get unsubscribe statistics |
Forms & Broadcasts
Tool | Description |
| List all forms |
| Get specific form details |
| List all broadcasts |
| Get 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 startUsing the MCP Inspector
The MCP Inspector provides a web-based UI for testing and debugging:
# Launch the inspector
npm run inspectFeatures:
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 trackingProject 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
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
Data Protection
Handle subscriber data according to privacy regulations (GDPR, CCPA)
Implement proper consent management
Use secure connections (HTTPS) only
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_namelast_nameuser_idtime_zoneeu_consenteu_consent_message
Custom Fields (Nested)
All other fields are automatically placed in custom_fields:
companyphoneaddress1,address2city,state,zip,countryAny custom data fields
Rate Limits
Operation Type | Limit | Window |
Individual Requests | 3,600 | Per hour |
Batch Operations | 50,000 | Per hour |
Concurrent Requests | 50 | Simultaneous |
Error Responses
Status Code | Description | Action Required |
401 | Unauthorized | Check API credentials |
403 | Forbidden | Verify permissions |
422 | Validation Error | Fix request parameters |
429 | Rate Limited | Wait and retry |
500 | Server Error | Contact 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:
Fork the repository and create a feature branch
Write tests for new functionality
Follow the code style (ESM, async/await, clear naming)
Update documentation for API changes
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 LICENSE file for details.
๐ Support
For This MCP Server
๐ง Email: support@gravitykit.com
๐ Issues: GitHub Issues
๐ฌ Discussions: GitHub Discussions
For Drip API
๐ฌ Drip Support
๐ Drip Academy
For MCP Protocol
๐ MCP Documentation
๐ฌ MCP Community
๐ Acknowledgments
Built with the Model Context Protocol SDK
Powered by Drip email marketing platform
Developed by GravityKit
Made with โค๏ธ by GravityKit
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/GravityKit/drip-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server