@iamjameslennon/ddb-mcp 2.3.0 → 2.4.3
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/LICENSE +21 -0
- package/README.md +4 -11
- package/package.json +7 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 James Lennon
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -207,27 +207,20 @@ Can a character use the Help action to assist with a skill check?
|
|
|
207
207
|
|
|
208
208
|
## Installation
|
|
209
209
|
|
|
210
|
-
### Option A — Install
|
|
210
|
+
### Option A — Install from npm (recommended)
|
|
211
211
|
|
|
212
212
|
```bash
|
|
213
|
-
npm install -g
|
|
214
|
-
```
|
|
215
|
-
|
|
216
|
-
Then install the browser:
|
|
217
|
-
|
|
218
|
-
```bash
|
|
219
|
-
npx playwright install chromium
|
|
213
|
+
npm install -g @iamjameslennon/ddb-mcp
|
|
220
214
|
```
|
|
221
215
|
|
|
222
|
-
|
|
216
|
+
Then:
|
|
223
217
|
|
|
224
218
|
```bash
|
|
225
219
|
npm root -g
|
|
226
|
-
# outputs something like /usr/local/lib/node_modules
|
|
227
220
|
```
|
|
228
221
|
|
|
229
222
|
```bash
|
|
230
|
-
claude mcp add dndbeyond node /usr/local/lib/node_modules/ddb-mcp/dist/index.js
|
|
223
|
+
claude mcp add dndbeyond node /usr/local/lib/node_modules/@iamjameslennon/ddb-mcp/dist/index.js
|
|
231
224
|
```
|
|
232
225
|
|
|
233
226
|
---
|
package/package.json
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iamjameslennon/ddb-mcp",
|
|
3
|
-
"version": "2.3
|
|
3
|
+
"version": "2.4.3",
|
|
4
4
|
"description": "D&D Beyond MCP Server with Google Auth",
|
|
5
|
+
"license": "MIT",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "dist/index.js",
|
|
7
|
-
"files": [
|
|
8
|
+
"files": [
|
|
9
|
+
"dist/",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
8
12
|
"scripts": {
|
|
9
13
|
"start": "node dist/index.js",
|
|
10
14
|
"dev": "tsx src/index.ts",
|
|
@@ -15,6 +19,7 @@
|
|
|
15
19
|
"typecheck": "tsc --noEmit",
|
|
16
20
|
"test": "vitest run",
|
|
17
21
|
"release": "node scripts/release.js",
|
|
22
|
+
"postinstall": "node -e \"if (process.env.npm_config_global) { require('child_process').execSync('npx playwright install chromium', {stdio:'inherit'}); }\"",
|
|
18
23
|
"preinstall": "node -e \"if (process.env.npm_command && process.env.npm_command !== 'ci' && !process.env.npm_config_global) { console.error('\\nERROR: Use npm ci instead of npm install.\\nThis project pins exact dependency versions via package-lock.json.\\nRunning npm install can silently upgrade packages and break things.\\n'); process.exit(1); }\""
|
|
19
24
|
},
|
|
20
25
|
"engines": {
|