discord-selfbot-mcp 1.2.8 → 1.3.0

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 CHANGED
@@ -186,6 +186,7 @@ powered by the robust `discord.py-self` library.
186
186
  | **system** | 2 | get_user_info, list_guilds |
187
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
+ | **dms** | 1 | list_dm_channels |
189
190
  | **voice** | 2 | join_voice_channel, leave_voice_channel |
190
191
  | **relationships** | 4 | list_friends, send_friend_request, add_friend, remove_friend |
191
192
  | **presence** | 2 | set_status, set_activity |
@@ -197,11 +198,42 @@ powered by the robust `discord.py-self` library.
197
198
  | **reactions** | 2 | add_reaction, remove_reaction |
198
199
  | **discrawl** | 7 | run_discrawl, discrawl_doctor, discrawl_status, discrawl_sync, discrawl_search, discrawl_messages, discrawl_mentions |
199
200
 
201
+ ### direct messages
202
+
203
+ `list_dm_channels` enumerates your open 1:1 and group DM channels so you can
204
+ discover a `channel_id` instead of needing to know it in advance. Each row is
205
+ `<channel_id> - [dm|group] <recipient display> (id=<user_id>) [BOT]`. Optional
206
+ args: `include_groups` (default `true`) and `name_contains` (case-insensitive
207
+ filter on recipient name/handle), e.g. find the DM with a person by name and
208
+ feed the id straight into `read_messages` / `send_message`.
209
+
210
+ ### slash commands
211
+
212
+ `send_slash_command` invokes an application command in a channel or DM. Pass
213
+ `application_id` (the bot's user/application ID) for reliable resolution; in a DM
214
+ with a bot it is inferred automatically. The command and any options are
215
+ resolved from the application's registered command list
216
+ (`GET /applications/{id}/commands`), which works for ordinary guild-installed
217
+ bots whose commands the per-channel `/` search index does not return. Subcommands
218
+ are space-separated in `command_name` (e.g. `"config set"`). Example:
219
+
220
+ ```json
221
+ {
222
+ "channel_id": "123456789012345678",
223
+ "command_name": "remind",
224
+ "application_id": "987654321098765432",
225
+ "options": { "text": "stand up", "when": "in 10 minutes" }
226
+ }
227
+ ```
228
+
200
229
  ### discrawl integration
201
230
 
202
231
  Use `run_discrawl` to execute local `discrawl` commands directly from MCP.
203
232
  Use typed tools for common operations (`discrawl_sync`, `discrawl_search`, `discrawl_messages`, etc.) when you want structured params.
204
- This fork prefers a sibling checkout at `../discrawl-self/bin/discrawl` when present, then falls back to `discrawl` in `PATH`.
233
+ By default this MCP uses the Microck fork at `../discrawl-self/bin/discrawl`:
234
+ `https://github.com/Microck/discrawl-self`. It does not silently fall back to a
235
+ global `discrawl` from `PATH`; set `DISCRAWL_BIN` or the tool `binary` argument
236
+ when you intentionally want another executable.
205
237
 
206
238
  Example tool call payload:
207
239
 
@@ -229,7 +261,7 @@ Typed tool payload example:
229
261
 
230
262
  Optional env var:
231
263
 
232
- - `DISCRAWL_BIN` - custom path to discrawl executable. This overrides the default fork-first lookup.
264
+ - `DISCRAWL_BIN` - custom path to discrawl executable. This overrides the default Microck fork lookup.
233
265
 
234
266
  ### attachment access
235
267
 
@@ -336,6 +368,7 @@ discord_py_self_mcp/
336
368
  │ └── solver.py
337
369
  └── tools/
338
370
  ├── channels.py
371
+ ├── dms.py
339
372
  ├── discrawl.py
340
373
  ├── embed.py
341
374
  ├── guilds.py
package/SKILL.md CHANGED
@@ -66,8 +66,11 @@ This server also exposes dedicated MCP tools to run local `discrawl` commands:
66
66
  - `discrawl_messages`
67
67
  - `discrawl_mentions`
68
68
 
69
- By default this MCP prefers a sibling fork build at `../discrawl-self/bin/discrawl`, then falls back to `discrawl` in `PATH`.
70
- Use `DISCRAWL_BIN` if you want to override that:
69
+ By default this MCP uses the Microck fork build at `../discrawl-self/bin/discrawl`
70
+ from `https://github.com/Microck/discrawl-self`. It does not silently fall back
71
+ to a global `discrawl` from `PATH`.
72
+
73
+ Use `DISCRAWL_BIN` if you want to intentionally override that:
71
74
 
72
75
  ```bash
73
76
  DISCRAWL_BIN=/absolute/path/to/discrawl
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "discord-selfbot-mcp",
3
- "version": "1.2.8",
3
+ "version": "1.3.0",
4
4
  "description": "Discord Selfbot MCP server - Node.js wrapper for Python implementation",
5
5
  "main": "index.js",
6
6
  "bin": {
package/server.json CHANGED
@@ -6,14 +6,14 @@
6
6
  "url": "https://github.com/Microck/discord.py-self-mcp",
7
7
  "source": "github"
8
8
  },
9
- "version": "1.2.8",
9
+ "version": "1.3.0",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "registryBaseUrl": "https://registry.npmjs.org",
14
14
  "identifier": "discord-selfbot-mcp",
15
15
  "runtimeHint": "python",
16
- "version": "1.2.8",
16
+ "version": "1.3.0",
17
17
  "packageArguments": [],
18
18
  "environmentVariables": [
19
19
  {
@@ -38,7 +38,7 @@
38
38
  },
39
39
  {
40
40
  "name": "DISCRAWL_BIN",
41
- "description": "Optional path to discrawl executable for the run_discrawl MCP tool. Overrides the default preference for ../discrawl-self/bin/discrawl.",
41
+ "description": "Optional path to discrawl executable for the run_discrawl MCP tool. Overrides the default Microck fork path at ../discrawl-self/bin/discrawl.",
42
42
  "format": "string",
43
43
  "isRequired": false
44
44
  }