-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "mcp-arr-server",
"version": "1.7.3",
"mcpName": "io.github.aplaceforallmystuff/mcp-arr",
"description": "MCP server for *arr media management suite - Sonarr, Radarr, Lidarr, Prowlarr",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"mcp-arr": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "npm run build && node --test",
"watch": "tsc --watch",
"start": "node dist/index.js",
"sync-server-json": "node scripts/sync-server-json.mjs",
"version": "npm run sync-server-json && git add server.json",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"sonarr",
"radarr",
"lidarr",
"prowlarr",
"media",
"plex",
"model-context-protocol",
"claude",
"chatgpt",
"ai"
],
"author": "Jim Christian",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0"
},
"devDependencies": {
"@types/node": "^20.19.29",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aplaceforallmystuff/mcp-arr.git"
}
}