mirror of
https://github.com/jmagar/unraid-mcp.git
synced 2026-03-23 04:29:17 -07:00
- Add schema validation tests for new tools (customization, plugins, oidc) and expanded array/keys actions (13 array, 7 keys) - Update TestSchemaCompleteness to include new modules with KNOWN_SCHEMA_ISSUES exclusion list for 4 tool-level schema mismatches (tracked for later fix) - Fix missing register_oidc_tool import in server.py (was causing NameError) - Update CLAUDE.md Tool Categories section: 11 → 15 tools, ~103 actions - Update Destructive Actions section with array/plugins additions - Bump version 0.4.8 → 0.5.0 in pyproject.toml and .claude-plugin/plugin.json - Schema tests: 84 passing → 119 passing (35 new tests) - Full suite: 618 passing → 738 passing (120 net new passing)
27 lines
654 B
JSON
27 lines
654 B
JSON
{
|
|
"name": "unraid",
|
|
"description": "Query and monitor Unraid servers via GraphQL API - array status, disk health, containers, VMs, system monitoring",
|
|
"version": "0.5.0",
|
|
"author": {
|
|
"name": "jmagar",
|
|
"email": "jmagar@users.noreply.github.com"
|
|
},
|
|
"homepage": "https://github.com/jmagar/unraid-mcp",
|
|
"repository": "https://github.com/jmagar/unraid-mcp",
|
|
"mcpServers": {
|
|
"unraid": {
|
|
"type": "stdio",
|
|
"command": "uv",
|
|
"args": [
|
|
"run",
|
|
"--directory",
|
|
"${CLAUDE_PLUGIN_ROOT}",
|
|
"unraid-mcp-server"
|
|
],
|
|
"env": {
|
|
"UNRAID_MCP_TRANSPORT": "stdio"
|
|
}
|
|
}
|
|
}
|
|
}
|