Back to README
Discord is a free voice, video, and text chat application designed for communities. PicoClaw connects to Discord servers via the Discord Bot API, supporting both receiving and sending messages.
{
"channels": {
"discord": {
"enabled": true,
"token": "YOUR_BOT_TOKEN",
"allow_from": ["YOUR_USER_ID"],
"group_trigger": {
"mention_only": false
}
}
}
}| Field | Type | Required | Description |
|---|---|---|---|
| enabled | bool | Yes | Whether to enable the Discord channel |
| token | string | Yes | Discord Bot Token |
| allow_from | array | No | Allowlist of user IDs; empty means all users are allowed |
| group_trigger | object | No | Group trigger settings (example: { "mention_only": false }) |
- Go to the Discord Developer Portal and create a new application
- Enable Intents:
- Message Content Intent
- Server Members Intent
- Obtain the Bot Token
- Fill in the Bot Token in the configuration file
- Invite the bot to your server and grant the necessary permissions (e.g. Send Messages, Read Message History)