#discord bot server help
1 messages · Page 1 of 1 (latest)
Yep — on your own server(s), you can make it so only you can trigger it.
But quick heads-up: in the OpenClaw community server, personal bots aren’t recommended/allowed. Use a private server you control.
For “only respond to me” on Discord, use an allowlist like this:
{
channels: {
discord: {
enabled: true,
dmPolicy: "allowlist",
allowFrom: ["YOUR_USER_ID"],
groupPolicy: "allowlist",
guilds: {
"YOUR_GUILD_ID": {
requireMention: true,
ignoreOtherMentions: true,
users: ["YOUR_USER_ID"]
}
}
}
}
}
What this does:
- DMs: only your user ID is allowed.
- Guild/server: only your user ID can trigger replies.
requireMention: truemeans it only responds when you mention the bot.