mirror of
https://github.com/jmagar/unraid-mcp.git
synced 2026-03-23 12:39:24 -07:00
New notification actions (archive_many, create_unique, unarchive_many, unarchive_all, recalculate) bring unraid_notifications to 14 actions. Also includes continuation of CodeRabbit/PR review fixes: - Remove redundant try-except in virtualization.py (silent failure fix) - Add QueryCache protocol with get/put/invalidate_all to core/client.py - Refactor subscriptions (manager, diagnostics, resources, utils) - Update config (logging, settings) for improved structure - Expand test coverage: http_layer, safety guards, schema validation - Minor cleanups: array, docker, health, keys tools Co-authored-by: Claude <noreply@anthropic.com>
15 lines
655 B
Python
15 lines
655 B
Python
"""MCP tools organized by functional domain.
|
|
|
|
10 consolidated tools with 76 actions total:
|
|
unraid_info - System information queries (19 actions)
|
|
unraid_array - Array operations and parity management (5 actions)
|
|
unraid_storage - Storage, disks, and logs (6 actions)
|
|
unraid_docker - Docker container management (15 actions)
|
|
unraid_vm - Virtual machine management (9 actions)
|
|
unraid_notifications - Notification management (9 actions)
|
|
unraid_rclone - Cloud storage remotes (4 actions)
|
|
unraid_users - User management (1 action)
|
|
unraid_keys - API key management (5 actions)
|
|
unraid_health - Health monitoring and diagnostics (3 actions)
|
|
"""
|