estoy intentando hacer un embed basico para un bot de discord [closed]

estoy intentando hacer un embed basico para un bot de discord este es el siguiente codigo

client.on("message", (message) =>{
   if(message.author.bot) return;
   if (!message.content.startsWith(prefix)) return;
//comandos
   const args = message.content.slice(prefix.length).trim().split(/ +/g)
   const command = args.shift().toLowerCase();
//embeds
if(command === 'embed'){
 const embed = new Discord.MessageEmbed()
   .setTitle('Infomacion del servidor');
 message.channel.send(embed);
}
});
client.login(config.token);

error:

DiscordAPIError: Cannot send an empty message
at RequestHandler.execute (C:UsersChinuDesktopbotdsGolden-botnode_modulesdiscord.jssrcrestRequestHandler.js:350:13)
at processTicksAndRejections (node:internal/process/task_queues:96:5)
at async RequestHandler.push (C:UsersChinuDesktopbotdsGolden-botnode_modulesdiscord.jssrcrestRequestHandler.js:51:14)
at async TextChannel.send (C:UsersChinuDesktopbotdsGolden-botnode_modulesdiscord.jssrcstructuresinterfacesTextBasedChannel.js:175:15) {

method: ‘post’,
path: ‘/channels/929202157410988113/messages’,
code: 50006,