Secure Discord Bot Integration Node
Connected
Provide your Discord Bot Token to access MDF services. Your bot bio must contain the watermark below.
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
To log in, you must first verify your Discord identity. Access is limited to allowlisted users and bot creators.
Sign In with DiscordComplete the ad checkpoint verification to dynamically increase subscription access by 3 days.
Earn Days (Ad Checks)Blocks Disabled
Switch to Visual Blocks Mode to Edit
Set a 6-digit PIN to protect your dashboard.
Anyone on a new device will need this PIN.
This PIN is only required on new or unrecognized devices.
This device isn't recognized. Enter your security PIN
to access your bot dashboard.
5 failed attempts will lock this account for 15 minutes.