discord-selfbot-mcp 1.2.0 → 1.2.2

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
@@ -201,6 +201,7 @@ powered by the robust `discord.py-self` library.
201
201
 
202
202
  Use `run_discrawl` to execute local `discrawl` commands directly from MCP.
203
203
  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`.
204
205
 
205
206
  Example tool call payload:
206
207
 
@@ -228,7 +229,7 @@ Typed tool payload example:
228
229
 
229
230
  Optional env var:
230
231
 
231
- - `DISCRAWL_BIN` - custom path to discrawl executable (defaults to `discrawl` in `PATH`)
232
+ - `DISCRAWL_BIN` - custom path to discrawl executable. This overrides the default fork-first lookup.
232
233
 
233
234
  ### comparison
234
235
 
package/SKILL.md CHANGED
@@ -66,7 +66,8 @@ This server also exposes dedicated MCP tools to run local `discrawl` commands:
66
66
  - `discrawl_messages`
67
67
  - `discrawl_mentions`
68
68
 
69
- Use `DISCRAWL_BIN` if `discrawl` is not in PATH:
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:
70
71
 
71
72
  ```bash
72
73
  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.0",
3
+ "version": "1.2.2",
4
4
  "description": "Discord Selfbot MCP server - Node.js wrapper for Python implementation",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -8,7 +8,8 @@
8
8
  "discord-selfbot-mcp-setup": "setup-wizard.js"
9
9
  },
10
10
  "scripts": {
11
- "postinstall": "node scripts/postinstall.js"
11
+ "postinstall": "node scripts/postinstall.js",
12
+ "release": "semantic-release"
12
13
  },
13
14
  "files": [
14
15
  "index.js",
@@ -36,7 +37,18 @@
36
37
  "dependencies": {
37
38
  "playwright": "^1.40.0"
38
39
  },
40
+ "devDependencies": {
41
+ "@semantic-release/changelog": "^6.0.3",
42
+ "@semantic-release/exec": "^7.1.0",
43
+ "@semantic-release/git": "^10.0.1",
44
+ "semantic-release": "^25.0.3"
45
+ },
39
46
  "engines": {
40
47
  "node": ">=18.0.0"
48
+ },
49
+ "publishConfig": {
50
+ "access": "public",
51
+ "provenance": true,
52
+ "registry": "https://registry.npmjs.org/"
41
53
  }
42
54
  }
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.0",
9
+ "version": "1.2.2",
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.0",
16
+ "version": "1.2.2",
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.",
41
+ "description": "Optional path to discrawl executable for the run_discrawl MCP tool. Overrides the default preference for ../discrawl-self/bin/discrawl.",
42
42
  "format": "string",
43
43
  "isRequired": false
44
44
  }