├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── server.json ├── src ├── arr-client.ts ├── index.ts └── trash-client.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | *.log 4 | .DS_Store 5 | .mcpregistry_* 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplaceforallmystuff/mcp-arr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplaceforallmystuff/mcp-arr/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplaceforallmystuff/mcp-arr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplaceforallmystuff/mcp-arr/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplaceforallmystuff/mcp-arr/HEAD/package.json -------------------------------------------------------------------------------- /server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplaceforallmystuff/mcp-arr/HEAD/server.json -------------------------------------------------------------------------------- /src/arr-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplaceforallmystuff/mcp-arr/HEAD/src/arr-client.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplaceforallmystuff/mcp-arr/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/trash-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplaceforallmystuff/mcp-arr/HEAD/src/trash-client.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aplaceforallmystuff/mcp-arr/HEAD/tsconfig.json --------------------------------------------------------------------------------