discord-selfbot-mcp 1.2.4 → 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 +7 -3
- package/SKILL.md +1 -2
- package/package.json +1 -1
- package/scripts/daemon.py +400 -343
- package/scripts/dcli.py +202 -225
- package/server.json +4 -4
- package/setup-wizard.js +9 -1
package/README.md
CHANGED
|
@@ -184,13 +184,13 @@ powered by the robust `discord.py-self` library.
|
|
|
184
184
|
| category | tools | description |
|
|
185
185
|
|----------|-------|-------------|
|
|
186
186
|
| **system** | 2 | get_user_info, list_guilds |
|
|
187
|
-
| **messages** |
|
|
187
|
+
| **messages** | 6 | send_message, read_messages, search_messages, edit_message, delete_message, get_message_attachments |
|
|
188
188
|
| **channels** | 3 | create_channel, delete_channel, list_channels |
|
|
189
189
|
| **voice** | 2 | join_voice_channel, leave_voice_channel |
|
|
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 |
|
|
@@ -231,6 +231,11 @@ Optional env var:
|
|
|
231
231
|
|
|
232
232
|
- `DISCRAWL_BIN` - custom path to discrawl executable. This overrides the default fork-first lookup.
|
|
233
233
|
|
|
234
|
+
### attachment access
|
|
235
|
+
|
|
236
|
+
Use `get_message_attachments` when a message contains files or images you need to inspect directly.
|
|
237
|
+
It returns attachment metadata for the target message and can stream image/file content back through MCP outputs.
|
|
238
|
+
|
|
234
239
|
### comparison
|
|
235
240
|
|
|
236
241
|
| feature | discord-py-self-mcp | discord.py-self (Lib) | Maol-1997 | codebyyassine | elyxlz |
|
|
@@ -298,7 +303,6 @@ built-in rate limiting to prevent account bans. configurable via environment var
|
|
|
298
303
|
| `RATE_LIMIT_MESSAGES_PER_SECOND` | `1` | Max messages per second |
|
|
299
304
|
| `RATE_LIMIT_ACTIONS_PER_MINUTE` | `5` | Max actions (joins, etc.) per minute |
|
|
300
305
|
| `RATE_LIMIT_COOLDOWN` | `60` | Cooldown duration when limit hit (seconds) |
|
|
301
|
-
| `RATE_LIMIT_RESPECT_GLOBAL` | `true` | Respect Discord's global rate limit |
|
|
302
306
|
|
|
303
307
|
> **recommended**: Enable rate limiting (`RATE_LIMIT_ENABLED=true`) to reduce ban risk.
|
|
304
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
|
|