plex-mcp 0.2.0 → 0.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/.github/workflows/ci.yml +2 -2
- package/package.json +10 -5
package/.github/workflows/ci.yml
CHANGED
|
@@ -12,7 +12,7 @@ jobs:
|
|
|
12
12
|
|
|
13
13
|
strategy:
|
|
14
14
|
matrix:
|
|
15
|
-
node-version: [
|
|
15
|
+
node-version: [18.x, 20.x]
|
|
16
16
|
|
|
17
17
|
steps:
|
|
18
18
|
- name: Checkout code
|
|
@@ -82,4 +82,4 @@ jobs:
|
|
|
82
82
|
run: npm audit --audit-level=moderate
|
|
83
83
|
|
|
84
84
|
- name: Check for vulnerabilities
|
|
85
|
-
run: npm audit fix --dry-run
|
|
85
|
+
run: npm audit fix --dry-run
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "plex-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "A Model Context Protocol (MCP) server that enables Claude to query and manage Plex media libraries.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -40,13 +40,18 @@
|
|
|
40
40
|
"homepage": "https://github.com/vyb1ng/plex-mcp#readme",
|
|
41
41
|
"type": "commonjs",
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@modelcontextprotocol/sdk": "^1.12.
|
|
44
|
-
"axios": "^1.
|
|
45
|
-
"plex-oauth": "^1.
|
|
43
|
+
"@modelcontextprotocol/sdk": "^1.12.3",
|
|
44
|
+
"axios": "^1.10.0",
|
|
45
|
+
"plex-oauth": "^2.1.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@types/jest": "^29.5.14",
|
|
49
49
|
"axios-mock-adapter": "^2.1.0",
|
|
50
|
-
"jest": "^
|
|
50
|
+
"jest": "^30.0.0"
|
|
51
|
+
},
|
|
52
|
+
"overrides": {
|
|
53
|
+
"plex-oauth": {
|
|
54
|
+
"axios": "^1.10.0"
|
|
55
|
+
}
|
|
51
56
|
}
|
|
52
57
|
}
|