mcp-arr-server 1.4.0 → 1.4.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/README.md +16 -11
- package/package.json +3 -5
package/README.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
# MCP *arr Server
|
|
2
2
|
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="docs/mcp-arr-logo.png" alt="MCP *arr Server" width="400">
|
|
5
|
+
</p>
|
|
6
|
+
|
|
3
7
|
[](https://www.npmjs.com/package/mcp-arr-server)
|
|
8
|
+
[](https://github.com/aplaceforallmystuff/mcp-arr/actions/workflows/ci.yml)
|
|
4
9
|
[](https://opensource.org/licenses/MIT)
|
|
5
10
|
[](https://modelcontextprotocol.io)
|
|
6
11
|
|
|
@@ -126,13 +131,13 @@ Add to `~/.claude.json`:
|
|
|
126
131
|
- "Show me all my TV series"
|
|
127
132
|
- "What movies do I have in Radarr?"
|
|
128
133
|
- "List all artists in my music library"
|
|
129
|
-
- "How many books do I have by
|
|
134
|
+
- "How many books do I have by this author?"
|
|
130
135
|
|
|
131
136
|
### Searching for Content
|
|
132
|
-
- "Search for
|
|
133
|
-
- "Find the
|
|
134
|
-
- "Search for
|
|
135
|
-
- "Look up
|
|
137
|
+
- "Search for sci-fi shows on Sonarr"
|
|
138
|
+
- "Find action movies from the 90s"
|
|
139
|
+
- "Search for jazz albums"
|
|
140
|
+
- "Look up fantasy book series"
|
|
136
141
|
|
|
137
142
|
### Download Queue
|
|
138
143
|
- "What's downloading right now?"
|
|
@@ -146,18 +151,18 @@ Add to `~/.claude.json`:
|
|
|
146
151
|
- "Show me upcoming book releases"
|
|
147
152
|
|
|
148
153
|
### Downloading Content
|
|
149
|
-
- "What episodes of
|
|
150
|
-
- "Download the missing episodes for that
|
|
154
|
+
- "What episodes of this show am I missing?"
|
|
155
|
+
- "Download the missing episodes for that series"
|
|
151
156
|
- "Search for this specific movie"
|
|
152
|
-
- "Grab that
|
|
153
|
-
- "Download all missing books
|
|
157
|
+
- "Grab that album I'm missing"
|
|
158
|
+
- "Download all missing books for this author"
|
|
154
159
|
|
|
155
160
|
### Indexer Management
|
|
156
161
|
- "Are my indexers healthy?"
|
|
157
162
|
- "How are my indexers performing?"
|
|
158
163
|
- "Test all my Prowlarr indexers"
|
|
159
164
|
|
|
160
|
-
### Configuration Review
|
|
165
|
+
### Configuration Review
|
|
161
166
|
- "Review my Sonarr setup and suggest improvements"
|
|
162
167
|
- "Show me my quality profiles in Radarr"
|
|
163
168
|
- "Are there any health issues with my Lidarr?"
|
|
@@ -168,7 +173,7 @@ Add to `~/.claude.json`:
|
|
|
168
173
|
|
|
169
174
|
### Cross-Service
|
|
170
175
|
- "Check status of all my *arr services"
|
|
171
|
-
- "Search for '
|
|
176
|
+
- "Search for 'comedy' across all services"
|
|
172
177
|
|
|
173
178
|
## Available Tools
|
|
174
179
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-arr-server",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"mcpName": "io.github.aplaceforallmystuff/mcp-arr",
|
|
5
5
|
"description": "MCP server for *arr media management suite - Sonarr, Radarr, Lidarr, Readarr, Prowlarr",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -32,11 +32,9 @@
|
|
|
32
32
|
],
|
|
33
33
|
"author": "Jim Christian",
|
|
34
34
|
"license": "MIT",
|
|
35
|
-
"dependencies": {
|
|
36
|
-
"@modelcontextprotocol/sdk": "^1.0.0"
|
|
37
|
-
},
|
|
38
35
|
"devDependencies": {
|
|
39
|
-
"@
|
|
36
|
+
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
37
|
+
"@types/node": "^20.19.29",
|
|
40
38
|
"typescript": "^5.3.0"
|
|
41
39
|
},
|
|
42
40
|
"engines": {
|