import { buildMailchimpUrl, handleMailchimpError } from '@/tools/mailchimp/types' import type { ToolConfig } from '@/tools/types' export interface MailchimpRemoveSegmentMemberParams { apiKey: string listId: string segmentId: string subscriberEmail: string } export interface MailchimpRemoveSegmentMemberResponse { success: boolean output: { success: boolean } } export const mailchimpRemoveSegmentMemberTool: ToolConfig< MailchimpRemoveSegmentMemberParams, MailchimpRemoveSegmentMemberResponse > = { id: 'mailchimp_remove_segment_member', name: 'Remove Member from Segment in Mailchimp', description: 'Remove a member from a specific segment in a Mailchimp audience', version: '1.0.0', params: { apiKey: { type: 'string', required: true, visibility: 'hidden', description: 'Mailchimp API key with server prefix', }, listId: { type: 'string', required: true, visibility: 'user-or-llm', description: 'The unique ID for the audience/list (e.g., "abc123def4")', }, segmentId: { type: 'string', required: true, visibility: 'user-or-llm', description: 'The unique ID for the segment (e.g., "12345")', }, subscriberEmail: { type: 'string', required: true, visibility: 'user-or-llm', description: 'Member email address or MD5 hash of the lowercase email', }, }, request: { url: (params) => buildMailchimpUrl( params.apiKey, `/lists/${params.listId}/segments/${params.segmentId}/members/${params.subscriberEmail}` ), method: 'DELETE', headers: (params) => ({ Authorization: `Bearer ${params.apiKey}`, 'Content-Type': 'application/json', }), }, transformResponse: async (response: Response) => { if (!response.ok) { const data = await response.json() handleMailchimpError(data, response.status, 'remove_segment_member') } return { success: true, output: { success: true, }, } }, outputs: { success: { type: 'boolean', description: 'Operation success status' }, output: { type: 'object', description: 'Removal confirmation', properties: { success: { type: 'boolean', description: 'Operation success' }, }, }, }, }