chore(unraid): add codex manifests, assets, nginx conf (syk)

Add .codex-plugin/plugin.json and .app.json plugin manifests, assets/
directory with icon.png and logo.svg placeholders, and
docs/unraid.subdomain.conf SWAG nginx reverse proxy config.
This commit is contained in:
Jacob Magar 2026-03-31 17:46:44 -04:00
parent 583fed3cd1
commit 4c19364f72
6 changed files with 28 additions and 0 deletions

5
.app.json Normal file
View file

@ -0,0 +1,5 @@
{
"name": "unraid-mcp",
"version": "1.0.0",
"description": "Unraid server management via MCP"
}

10
.codex-plugin/plugin.json Normal file
View file

@ -0,0 +1,10 @@
{
"name": "unraid-mcp",
"version": "1.0.0",
"description": "Unraid server management via MCP",
"interface": {
"type": "mcp",
"transport": "http",
"url": "http://localhost:3000/mcp"
}
}

BIN
assets/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 B

4
assets/logo.svg Normal file
View file

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 64 64">
<rect width="64" height="64" rx="8" fill="#FF6600"/>
<text x="32" y="42" font-size="32" text-anchor="middle" fill="white">U</text>
</svg>

After

Width:  |  Height:  |  Size: 226 B

View file

View file

@ -0,0 +1,9 @@
server {
listen 443 ssl;
server_name unraid.*;
include /config/nginx/ssl.conf;
location / {
include /config/nginx/proxy.conf;
proxy_pass http://unraid-mcp:3000;
}
}