plex-mcp 0.0.1
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/.claude/settings.local.json +17 -0
- package/.github/workflows/ci.yml +85 -0
- package/.github/workflows/pr.yml +107 -0
- package/.github/workflows/release.yml +30 -0
- package/LICENSE +46 -0
- package/README.md +58 -0
- package/README.txt +198 -0
- package/README.txt~ +198 -0
- package/index.js +3506 -0
- package/package-lock.json~ +4715 -0
- package/package.json +41 -0
- package/package.json~ +25 -0
package/package.json
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
{
|
2
|
+
"name": "plex-mcp",
|
3
|
+
"version": "0.0.1",
|
4
|
+
"description": "A Model Context Protocol (MCP) server that enables Claude to query and manage Plex media libraries.",
|
5
|
+
"main": "index.js",
|
6
|
+
"bin": {
|
7
|
+
"plex-mcp": "./index.js"
|
8
|
+
},
|
9
|
+
"scripts": {
|
10
|
+
"start": "node index.js",
|
11
|
+
"test": "jest",
|
12
|
+
"test:watch": "jest --watch",
|
13
|
+
"test:coverage": "jest --coverage",
|
14
|
+
"prepublishOnly": "npm test",
|
15
|
+
"version:patch": "npm version patch",
|
16
|
+
"version:minor": "npm version minor",
|
17
|
+
"version:major": "npm version major",
|
18
|
+
"release": "npm publish"
|
19
|
+
},
|
20
|
+
"keywords": ["mcp", "plex", "model-context-protocol", "claude", "media", "server"],
|
21
|
+
"author": "",
|
22
|
+
"license": "ISC",
|
23
|
+
"repository": {
|
24
|
+
"type": "git",
|
25
|
+
"url": "git+https://github.com/your-username/plex-mcp.git"
|
26
|
+
},
|
27
|
+
"bugs": {
|
28
|
+
"url": "https://github.com/your-username/plex-mcp/issues"
|
29
|
+
},
|
30
|
+
"homepage": "https://github.com/your-username/plex-mcp#readme",
|
31
|
+
"type": "commonjs",
|
32
|
+
"dependencies": {
|
33
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
34
|
+
"axios": "^1.9.0"
|
35
|
+
},
|
36
|
+
"devDependencies": {
|
37
|
+
"jest": "^29.7.0",
|
38
|
+
"@types/jest": "^29.5.8",
|
39
|
+
"axios-mock-adapter": "^1.22.0"
|
40
|
+
}
|
41
|
+
}
|
package/package.json~
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
{
|
2
|
+
"name": "mcp",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"start": "node index.js",
|
8
|
+
"test": "jest",
|
9
|
+
"test:watch": "jest --watch",
|
10
|
+
"test:coverage": "jest --coverage"
|
11
|
+
},
|
12
|
+
"keywords": [],
|
13
|
+
"author": "",
|
14
|
+
"license": "ISC",
|
15
|
+
"type": "commonjs",
|
16
|
+
"dependencies": {
|
17
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
18
|
+
"axios": "^1.9.0"
|
19
|
+
},
|
20
|
+
"devDependencies": {
|
21
|
+
"jest": "^29.7.0",
|
22
|
+
"@types/jest": "^29.5.8",
|
23
|
+
"axios-mock-adapter": "^1.22.0"
|
24
|
+
}
|
25
|
+
}
|