chore: expose all server env vars in .mcp.json, bump to 1.3.1

This commit is contained in:
Jacob Magar 2026-04-05 18:27:30 -04:00
parent bca66612bc
commit 8d3c431da8
6 changed files with 17 additions and 5 deletions

View file

@ -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",

View file

@ -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",

View file

@ -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"
}
}
}

View file

@ -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

View file

@ -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": {

View file

@ -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"}