discord-selfbot-mcp 1.2.5 → 1.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -2
- package/SKILL.md +1 -2
- package/package.json +1 -1
- package/scripts/daemon.py +397 -331
- package/scripts/dcli.py +189 -225
- package/server.json +4 -4
- package/setup-wizard.js +9 -1
package/README.md
CHANGED
|
@@ -190,7 +190,7 @@ powered by the robust `discord.py-self` library.
|
|
|
190
190
|
| **relationships** | 4 | list_friends, send_friend_request, add_friend, remove_friend |
|
|
191
191
|
| **presence** | 2 | set_status, set_activity |
|
|
192
192
|
| **interactions** | 3 | send_slash_command, click_button, select_menu |
|
|
193
|
-
| **threads** |
|
|
193
|
+
| **threads** | 5 | create_thread, send_thread_message, list_threads, read_thread_messages, archive_thread |
|
|
194
194
|
| **members** | 5 | kick_member, ban_member, unban_member, add_role, remove_role |
|
|
195
195
|
| **invites** | 3 | create_invite, list_invites, delete_invite |
|
|
196
196
|
| **profile** | 1 | edit_profile |
|
|
@@ -303,7 +303,6 @@ built-in rate limiting to prevent account bans. configurable via environment var
|
|
|
303
303
|
| `RATE_LIMIT_MESSAGES_PER_SECOND` | `1` | Max messages per second |
|
|
304
304
|
| `RATE_LIMIT_ACTIONS_PER_MINUTE` | `5` | Max actions (joins, etc.) per minute |
|
|
305
305
|
| `RATE_LIMIT_COOLDOWN` | `60` | Cooldown duration when limit hit (seconds) |
|
|
306
|
-
| `RATE_LIMIT_RESPECT_GLOBAL` | `true` | Respect Discord's global rate limit |
|
|
307
306
|
|
|
308
307
|
> **recommended**: Enable rate limiting (`RATE_LIMIT_ENABLED=true`) to reduce ban risk.
|
|
309
308
|
|
package/SKILL.md
CHANGED
|
@@ -248,7 +248,7 @@ Commands that support `--after` parameter accept the following formats:
|
|
|
248
248
|
- **Daemon Mode**: Uses persistent connection for instant command execution
|
|
249
249
|
- **Auto-Restart**: Daemon monitors its own code and restarts automatically when changes are detected
|
|
250
250
|
- **Process Management**: Built-in commands to manage the daemon lifecycle
|
|
251
|
-
- **Socket Communication**: Client and daemon communicate via Unix socket
|
|
251
|
+
- **Socket Communication**: Client and daemon communicate via a private Unix socket under `$XDG_RUNTIME_DIR/discord-py-self-mcp` or `~/.local/state/discord-py-self-mcp`
|
|
252
252
|
- **Rate Limiting**: Respected automatically by the underlying discord.py library
|
|
253
253
|
|
|
254
254
|
## Working with Forum Channels
|
|
@@ -294,7 +294,6 @@ python3 scripts/dcli.py daemon restart
|
|
|
294
294
|
```bash
|
|
295
295
|
# Clean up and restart
|
|
296
296
|
python3 scripts/dcli.py daemon stop
|
|
297
|
-
rm /tmp/discord-cli-daemon.sock
|
|
298
297
|
python3 scripts/dcli.py daemon start
|
|
299
298
|
```
|
|
300
299
|
|