productivity
Drip MCP, CLI, and Lua Integration for AI Agents
Drip integration docs for AI agents: MCP gateway setup, Drip CLI commands, Lua API reference, credentials, and function schemas.Drip for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
drip.drip_list_campaigns | Read read | 2 | List email campaigns in your Drip account. Returns campaign details including name, status, and configuration. Paginated — use page and per_page parameters to navigate results. |
drip.drip_get_campaign | Read read | 1 | Fetch a single email campaign from Drip by its campaign ID. Returns full campaign details including name, status, configuration, and associated actions. |
drip.drip_list_subscribers | Read read | 2 | List subscribers in your Drip account. Returns subscriber records including email, status, tags, and custom fields. Paginated — use page and per_page parameters to navigate results. |
drip.drip_get_subscriber | Read read | 1 | Fetch a single subscriber from Drip by their subscriber ID or email address. Returns full subscriber details including status, tags, custom fields, and subscription information. |
drip.drip_list_workflows | Read read | 2 | List workflows in your Drip account. Returns workflow details including name, status, and trigger configuration. Paginated — use page and per_page parameters to navigate results. |
drip.drip_get_workflow | Read read | 1 | Fetch a single workflow from Drip by its workflow ID. Returns full workflow details including name, status, trigger configuration, and associated actions. |
drip.drip_get_current_user | Read read | 0 | Get the currently authenticated Drip user. Returns user profile information including name, email, and account details. Useful for verifying the API connection and identifying which account is active. |