mirror of
https://github.com/jmagar/unraid-mcp.git
synced 2026-03-23 12:39:24 -07:00
- plugin.json: bump version 0.2.0 → 0.4.0 to match pyproject.toml - Dockerfile: update uv 0.5.4 → 0.6 (global CLAUDE.md requires 0.10+) - .dockerignore: exclude tests/, docs/, scripts/, commands/, .full-review/, .claude-plugin/, *.md (keep README.md) — reduces image size
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.4.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"
|
|
}
|
|
}
|
|
}
|
|
}
|