MDF CLIENT // PORTAL

Secure Discord Bot Integration Node

Connect Your Bot

Provide your Discord Bot Token to access MDF services. Your bot bio must contain the watermark below.

Required: Set Bot Bio Watermark

Your bot description must include powered by mdf. Use the code snippet below to apply it automatically, or set it manually in the Discord Developer Portal.

import discord, asyncio

BOT_TOKEN = "your_bot_token_here"

async def set_bio():
    bot = discord.Client(intents=discord.Intents.default())
    await bot.login(BOT_TOKEN)
    await bot.http.edit_current_user(bio="powered by mdf")
    print("[MDF] Bot bio updated successfully.")
    await bot.close()

asyncio.run(set_bio())
const { Client, GatewayIntentBits } = require("discord.js");
const BOT_TOKEN = "your_bot_token_here";
const client = new Client({ intents: [GatewayIntentBits.Guilds] });

client.once("ready", async () => {
    await client.rest.patch("/users/@me", { body: { bio: "powered by mdf" } });
    console.log("[MDF] Bot bio set:", client.user.tag);
    client.destroy();
});
client.login(BOT_TOKEN);

1. Go to discord.com/developers/applications

2. Select your application → General Information

3. In the Short Description field, enter:

powered by mdf

4. Click Save Changes