mirror of
https://github.com/jmagar/unraid-mcp
synced 2026-04-21 13:37:53 +00:00
chore: expose all server env vars in .mcp.json, bump to 1.3.1
This commit is contained in:
parent
bca66612bc
commit
8d3c431da8
6 changed files with 17 additions and 5 deletions
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "unraid-mcp",
|
||||
"displayName": "Unraid MCP",
|
||||
"version": "1.3.0",
|
||||
"version": "1.3.1",
|
||||
"description": "Query, monitor, and manage Unraid servers via GraphQL API through MCP tools. Supports system info, Docker, VMs, array/parity, notifications, plugins, rclone, and live telemetry.",
|
||||
"author": {
|
||||
"name": "Jacob Magar",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "unraid-mcp",
|
||||
"version": "1.3.0",
|
||||
"version": "1.3.1",
|
||||
"description": "Unraid server management via MCP.",
|
||||
"homepage": "https://github.com/jmagar/unraid-mcp",
|
||||
"repository": "https://github.com/jmagar/unraid-mcp",
|
||||
|
|
|
|||
|
|
@ -9,8 +9,15 @@
|
|||
"unraid-mcp-server"
|
||||
],
|
||||
"env": {
|
||||
"UV_PROJECT_ENVIRONMENT": "${CLAUDE_PLUGIN_DATA}/.venv",
|
||||
"UNRAID_MCP_TRANSPORT": "stdio",
|
||||
"UV_PROJECT_ENVIRONMENT": "${CLAUDE_PLUGIN_DATA}/.venv"
|
||||
"UNRAID_API_URL": "",
|
||||
"UNRAID_API_KEY": "",
|
||||
"UNRAID_VERIFY_SSL": "true",
|
||||
"UNRAID_MCP_LOG_LEVEL": "INFO",
|
||||
"UNRAID_MCP_LOG_FILE": "unraid-mcp.log",
|
||||
"UNRAID_AUTO_START_SUBSCRIPTIONS": "true",
|
||||
"UNRAID_MAX_RECONNECT_ATTEMPTS": "10"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.3.1] - 2026-04-05
|
||||
|
||||
### Changed
|
||||
- **`.mcp.json`**: Added all server env vars with defaults; removed `UNRAID_CREDENTIALS_DIR` (container-only override, not user-facing).
|
||||
|
||||
## [1.3.0] - 2026-04-05
|
||||
|
||||
### Added
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "unraid-mcp",
|
||||
"version": "1.3.0",
|
||||
"version": "1.3.1",
|
||||
"description": "Query, monitor, and manage Unraid servers via GraphQL API through MCP tools. Supports system info, Docker, VMs, array/parity, notifications, plugins, and live telemetry.",
|
||||
"mcpServers": {
|
||||
"unraid-mcp": {
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@ build-backend = "hatchling.build"
|
|||
# ============================================================================
|
||||
[project]
|
||||
name = "unraid-mcp"
|
||||
version = "1.3.0"
|
||||
version = "1.3.1"
|
||||
description = "MCP Server for Unraid API - provides tools to interact with an Unraid server's GraphQL API"
|
||||
readme = "README.md"
|
||||
license = {file = "LICENSE"}
|
||||
|
|
|
|||
Loading…
Reference in a new issue