Every capability is a discrete, logged action the agent calls by name — scoped to what you authorize and recorded in the run trace.
Create Contacts in BulkDRIPCEL_CREATE_CONTACTS
Tool to upload a list of new contacts to Dripcel in bulk. Only creates new contacts (does not update existing ones). Use when you need to add multiple contacts to your Dripcel account at once. Maximum 100,000 contacts per request.
Delete ContactDRIPCEL_DELETE_CONTACT
Tool to delete a contact by their cell number. Use when you need to remove a contact from Dripcel after confirming the MSISDN.
Delete TagDRIPCEL_DELETE_TAG
Tool to delete a tag by its ID. Use when you need to remove a tag from Dripcel. Warning: This will also remove the tag from all contacts and campaigns that have it.
Get current credit balanceDRIPCEL_GET_BALANCE
Retrieves the current credit balance for your Dripcel organization account. This action requires no input parameters and returns the available credit balance as a numeric value. Use this to check your account balance before performing credit-consuming operations like sending SMS messages. The balance is returned in your account's default currency (not explicitly specified in the response).
Get Dripcel CampaignsDRIPCEL_GET_CAMPAIGNS
Retrieves a list of campaigns from Dripcel. Supports optional pagination (page, pageSize) and filtering by campaign status. Returns campaign details including ID, name, status, and timestamps.
Get contact by cell numberDRIPCEL_GET_CONTACT
Tool to retrieve a single contact by their cell number (MSISDN). Use when you need to view details of a specific contact including their name, email, tags, and other metadata.
Get DeliveriesDRIPCEL_GET_DELIVERIES
Tool to retrieve SMS/email delivery records from Dripcel. Returns a list of message deliveries filtered by recipient phone number (cell) or send operation ID (customerId). Useful for tracking message delivery status, checking delivery history for a specific contact, or auditing a particular send operation.
Get email templatesDRIPCEL_GET_EMAIL_TEMPLATES
Retrieves all email templates from your Dripcel account. Returns a list of templates with their IDs, names, subjects, and content. Use this action when you need to: - View all available email templates in your account - Get template IDs for use in email sending operations - Check template content before selecting one for a campaign - List templates to verify template creation or updates Note: According to API documentation, this endpoint returns all templates without documented support for pagination or filtering.
Get salesDRIPCEL_GET_SALES
Tool to retrieve a list of all sales. Use when you need comprehensive sales data for reporting or analytics.
List all tagsDRIPCEL_LIST_TAGS
Tool to retrieve all tags in your Dripcel organization. Use when you need to view available tags, get tag IDs for adding to contacts, or verify tag existence before operations.
Opt out contact from campaignsDRIPCEL_OPT_OUT_CONTACT
Tool to opt out a contact from multiple campaigns at once. Use when you need to remove a contact from campaign messaging. More robust than single campaign opt-out, allowing batch operations or opting out from all campaigns at once.
Check SMS ComplianceDRIPCEL_POST_COMPLIANCE_SEND
Check if phone numbers are allowed to receive SMS messages based on opt-out status and campaign targeting rules. Returns whether each number can be sent to, helping ensure compliance before sending messages. Costs 0.14 credits per phone number checked.
Search replies based on filtersDRIPCEL_POST_REPLIES_SEARCH
Search for SMS/message replies with flexible filtering by ID, campaign, phone number, reply type, message content, or date range. Returns matching replies with metadata. All filters are optional and can be combined for precise queries.
Add tags to a contactDRIPCEL_PUT_CONTACT_TAG_ADD
Add one or more tags to a contact identified by phone number. Use this tool to organize contacts by assigning tags for segmentation and targeting. Tags must exist in the system before being added - use GET /tags to retrieve valid tag IDs. Provide either tag_ids (recommended) or tag names. Set create_missing_contact=true to automatically create the contact if they don't exist in your Dripcel account. Response includes matchedCount (contacts found) and modifiedCount (contacts updated).
Search send logsDRIPCEL_SEARCH_SEND_LOGS
Search for SMS send logs with flexible filtering by ID, phone number, campaign, delivery, message content (regex), or date range. Supports MongoDB-style queries with projection and pagination. All filters are optional and can be combined.
Send Bulk EmailDRIPCEL_SEND_BULK_EMAIL
Tool to send bulk emails to multiple recipients using a template. Use when you need to send the same email content to many contacts at once.
Send SMSDRIPCEL_SEND_SMS
Tool to send a single SMS to a contact. Use when you need to deliver a targeted message immediately or schedule it for later.
Upsert ContactsDRIPCEL_UPSERT_CONTACTS
Tool to upload contacts in bulk, creating new contacts or updating existing ones. Limit: 20,000 contacts per request. Use when you need to import or sync a list of contacts to Dripcel. Invalid contacts will be reported but won't block the operation.