fileclaw 0.5.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/LICENSE +21 -0
- package/README.md +275 -0
- package/config.example.json +51 -0
- package/dist/cli.js +28609 -0
- package/dist/mcp.js +27802 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "fileclaw",
|
|
3
|
+
"version": "0.5.0",
|
|
4
|
+
"description": "MCP server + CLI for searching and downloading all media types",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"fileclaw": "./dist/cli.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/mcp.js",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/",
|
|
12
|
+
"config.example.json",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE"
|
|
15
|
+
],
|
|
16
|
+
"keywords": [
|
|
17
|
+
"mcp",
|
|
18
|
+
"search",
|
|
19
|
+
"download",
|
|
20
|
+
"torrent",
|
|
21
|
+
"usenet",
|
|
22
|
+
"media",
|
|
23
|
+
"real-debrid",
|
|
24
|
+
"claude"
|
|
25
|
+
],
|
|
26
|
+
"repository": {
|
|
27
|
+
"type": "git",
|
|
28
|
+
"url": "https://github.com/RZacharias44/fileclaw"
|
|
29
|
+
},
|
|
30
|
+
"license": "MIT",
|
|
31
|
+
"engines": {
|
|
32
|
+
"node": ">=18",
|
|
33
|
+
"bun": ">=1.0"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"dev": "bun run src/mcp.ts",
|
|
37
|
+
"build": "bun build src/mcp.ts --outdir dist --target node && bun build src/cli.ts --outdir dist --target node",
|
|
38
|
+
"prepublishOnly": "bun run build && bun run typecheck && SKIP_INTEGRATION=1 bun test",
|
|
39
|
+
"cli": "bun run src/cli.ts",
|
|
40
|
+
"typecheck": "tsc --noEmit",
|
|
41
|
+
"test": "bun test"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@modelcontextprotocol/sdk": "^1.28.0",
|
|
45
|
+
"soulseek-ts": "^2.1.4",
|
|
46
|
+
"webtorrent-cli": "^5.1.3",
|
|
47
|
+
"zod": "^3.23.0"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/bun": "latest",
|
|
51
|
+
"typescript": "^5.0.0"
|
|
52
|
+
}
|
|
53
|
+
}
|