mirror of
https://github.com/jmagar/unraid-mcp
synced 2026-04-21 13:37:53 +00:00
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:
parent
583fed3cd1
commit
4c19364f72
6 changed files with 28 additions and 0 deletions
5
.app.json
Normal file
5
.app.json
Normal 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
10
.codex-plugin/plugin.json
Normal 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
BIN
assets/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 67 B |
4
assets/logo.svg
Normal file
4
assets/logo.svg
Normal 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 |
0
assets/screenshots/.gitkeep
Normal file
0
assets/screenshots/.gitkeep
Normal file
9
docs/unraid.subdomain.conf
Normal file
9
docs/unraid.subdomain.conf
Normal 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;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue