import type { DiscordRemoveReactionParams, DiscordRemoveReactionResponse, } from '@/tools/discord/types' import type { ToolConfig } from '@/tools/types' export const discordRemoveReactionTool: ToolConfig< DiscordRemoveReactionParams, DiscordRemoveReactionResponse > = { id: 'discord_remove_reaction', name: 'Discord Remove Reaction', description: 'Remove a reaction from a Discord message', version: '1.0.0', params: { botToken: { type: 'string', required: true, visibility: 'user-only', description: 'The bot token for authentication', }, channelId: { type: 'string', required: true, visibility: 'user-or-llm', description: 'The Discord channel ID containing the message, e.g., 123456789012345678', }, messageId: { type: 'string', required: true, visibility: 'user-or-llm', description: 'The ID of the message with the reaction, e.g., 123456789012345678', }, emoji: { type: 'string', required: true, visibility: 'user-or-llm', description: 'The emoji to remove (unicode emoji or custom emoji in name:id format)', }, userId: { type: 'string', required: false, visibility: 'user-or-llm', description: "The user ID whose reaction to remove (omit to remove bot's own reaction), e.g., 123456789012345678", }, serverId: { type: 'string', required: true, visibility: 'user-or-llm', description: 'The Discord server ID (guild ID), e.g., 123456789012345678', }, }, request: { url: (params: DiscordRemoveReactionParams) => { const encodedEmoji = encodeURIComponent(params.emoji) const userId = params.userId?.trim() const userPart = userId ? `/${userId}` : '/@me' return `https://discord.com/api/v10/channels/${params.channelId.trim()}/messages/${params.messageId.trim()}/reactions/${encodedEmoji}${userPart}` }, method: 'DELETE', headers: (params) => ({ Authorization: `Bot ${params.botToken.trim()}`, }), }, transformResponse: async (response) => { return { success: true, output: { message: 'Reaction removed successfully', }, } }, outputs: { message: { type: 'string', description: 'Success or error message' }, }, }