Remove unused MCP resources and update documentation

- Remove array_status, system_info, notifications_overview, and parity_status resources
- Keep only logs_stream resource (unraid://logs/stream) which is working properly
- Update README.md with current resource documentation and modern docker compose syntax
- Fix import path issues that were causing subscription errors
- Update environment configuration examples
- Clean up subscription manager to only include working log streaming

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Jacob Magar
2025-08-11 14:19:27 -04:00
parent f355511fe6
commit b00d78f408
29 changed files with 3641 additions and 2561 deletions

View File

@@ -30,7 +30,7 @@ dependencies = [
"httpx>=0.28.1",
"fastapi>=0.116.1",
"uvicorn>=0.35.0",
"websockets>=14.1",
"websockets>=13.1,<14.0",
]
[project.optional-dependencies]
@@ -49,10 +49,10 @@ Repository = "https://github.com/your-username/unraid-mcp"
Issues = "https://github.com/your-username/unraid-mcp/issues"
[project.scripts]
unraid-mcp-server = "unraid_mcp_server:main"
unraid-mcp-server = "unraid_mcp.main:main"
[tool.hatch.build.targets.wheel]
only-include = ["unraid_mcp_server.py"]
only-include = ["unraid_mcp/"]
[tool.black]
line-length = 100