mirror of
https://github.com/jmagar/unraid-mcp.git
synced 2026-03-02 08:14:43 -08:00
Security Updates: - fastmcp 2.12.5 → 2.14.5 (fixes CVE-2025-66416, command injection, XSS, auth takeover) - mcp 1.16.0 → 1.26.0 (enables DNS rebinding protection, addresses CVE requirements) - websockets 13.1 → 16.0 (required dependency for fastmcp 2.14.5) Dependency Changes: + beartype 0.22.9 + cachetools 7.0.1 + cloudpickle 3.1.2 + croniter 6.0.0 + diskcache 5.6.3 + fakeredis 2.34.0 + importlib-metadata 8.7.1 + jsonref 1.1.1 + lupa 2.6 + opentelemetry-api 1.39.1 + pathvalidate 3.3.1 + platformdirs 4.9.2 + prometheus-client 0.24.1 + py-key-value-aio 0.3.0 + py-key-value-shared 0.3.0 + pydocket 0.17.7 + pyjwt 2.11.0 + python-dateutil 2.9.0.post0 + python-json-logger 4.0.0 + redis 7.2.0 + shellingham 1.5.4 + sortedcontainers 2.4.0 + typer 0.23.2 + zipp 3.23.0 Removed Dependencies: - isodate 0.7.2 - lazy-object-proxy 1.12.0 - markupsafe 3.0.3 - openapi-core 0.22.0 - openapi-schema-validator 0.6.3 - openapi-spec-validator 0.7.2 - rfc3339-validator 0.1.4 - werkzeug 3.1.5 Testing: - All 493 tests pass - Type checking passes (ty check) - Linting passes (ruff check) This completes the resolution of GitHub Dependabot security alerts. Addresses the remaining 5 high/medium severity vulnerabilities in fastmcp and mcp packages.
295 lines
7.7 KiB
TOML
295 lines
7.7 KiB
TOML
# ============================================================================
|
|
# Build System Configuration
|
|
# ============================================================================
|
|
[build-system]
|
|
requires = ["hatchling>=1.25.0"]
|
|
build-backend = "hatchling.build"
|
|
|
|
# ============================================================================
|
|
# Project Metadata
|
|
# ============================================================================
|
|
[project]
|
|
name = "unraid-mcp"
|
|
version = "0.2.0"
|
|
description = "MCP Server for Unraid API - provides tools to interact with an Unraid server's GraphQL API"
|
|
readme = "README.md"
|
|
license = {file = "LICENSE"}
|
|
requires-python = ">=3.12"
|
|
authors = [
|
|
{name = "jmagar", email = "jmagar@users.noreply.github.com"}
|
|
]
|
|
maintainers = [
|
|
{name = "jmagar", email = "jmagar@users.noreply.github.com"}
|
|
]
|
|
keywords = [
|
|
"unraid",
|
|
"mcp",
|
|
"model-context-protocol",
|
|
"graphql",
|
|
"api",
|
|
"server",
|
|
"docker",
|
|
"automation",
|
|
"monitoring",
|
|
"homelab",
|
|
]
|
|
classifiers = [
|
|
# Development Status
|
|
"Development Status :: 4 - Beta",
|
|
|
|
# Audience
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: System Administrators",
|
|
|
|
# License
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
# Python Versions
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
|
|
# Framework
|
|
"Framework :: FastAPI",
|
|
"Framework :: Pydantic",
|
|
|
|
# Topics
|
|
"Topic :: Home Automation",
|
|
"Topic :: System :: Monitoring",
|
|
"Topic :: System :: Systems Administration",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
# Environment
|
|
"Operating System :: OS Independent",
|
|
"Environment :: Console",
|
|
"Typing :: Typed",
|
|
]
|
|
|
|
# ============================================================================
|
|
# Dependencies
|
|
# ============================================================================
|
|
dependencies = [
|
|
"python-dotenv>=1.1.1",
|
|
"fastmcp>=2.14.5",
|
|
"httpx>=0.28.1",
|
|
"fastapi>=0.115.0",
|
|
"uvicorn[standard]>=0.35.0",
|
|
"websockets>=15.0.1",
|
|
"rich>=14.1.0",
|
|
"pytz>=2025.2",
|
|
]
|
|
|
|
# ============================================================================
|
|
# Project URLs
|
|
# ============================================================================
|
|
[project.urls]
|
|
Homepage = "https://github.com/jmagar/unraid-mcp"
|
|
Documentation = "https://github.com/jmagar/unraid-mcp#readme"
|
|
Repository = "https://github.com/jmagar/unraid-mcp"
|
|
Issues = "https://github.com/jmagar/unraid-mcp/issues"
|
|
Changelog = "https://github.com/jmagar/unraid-mcp/releases"
|
|
Source = "https://github.com/jmagar/unraid-mcp"
|
|
|
|
# ============================================================================
|
|
# Entry Points
|
|
# ============================================================================
|
|
[project.scripts]
|
|
unraid-mcp-server = "unraid_mcp.main:main"
|
|
unraid-mcp = "unraid_mcp.main:main"
|
|
|
|
# ============================================================================
|
|
# Build Configuration
|
|
# ============================================================================
|
|
[tool.hatch.build.targets.wheel]
|
|
only-include = ["unraid_mcp"]
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = [
|
|
"/unraid_mcp",
|
|
"/tests",
|
|
"/README.md",
|
|
"/LICENSE",
|
|
"/pyproject.toml",
|
|
"/.env.example",
|
|
]
|
|
exclude = [
|
|
"/.git",
|
|
"/.github",
|
|
"/.venv",
|
|
"/.cache",
|
|
"/.docs",
|
|
"/.full-review",
|
|
"/docs",
|
|
"*.pyc",
|
|
"__pycache__",
|
|
]
|
|
|
|
# ============================================================================
|
|
# Tool Configuration: Ruff (Linting & Formatting)
|
|
# ============================================================================
|
|
[tool.ruff]
|
|
target-version = "py312"
|
|
line-length = 100
|
|
cache-dir = ".cache/.ruff_cache"
|
|
|
|
[tool.ruff.lint]
|
|
select = [
|
|
# Pyflakes
|
|
"F",
|
|
# pycodestyle
|
|
"E",
|
|
"W",
|
|
# isort
|
|
"I",
|
|
# pep8-naming
|
|
"N",
|
|
# pydocstyle
|
|
"D",
|
|
# pyupgrade
|
|
"UP",
|
|
# flake8-2020
|
|
"YTT",
|
|
# flake8-bugbear
|
|
"B",
|
|
# flake8-quotes
|
|
"Q",
|
|
# flake8-comprehensions
|
|
"C4",
|
|
# flake8-simplify
|
|
"SIM",
|
|
# flake8-type-checking
|
|
"TCH",
|
|
# flake8-use-pathlib
|
|
"PTH",
|
|
# flake8-async
|
|
"ASYNC",
|
|
# flake8-return
|
|
"RET",
|
|
# Perflint
|
|
"PERF",
|
|
# Ruff-specific rules
|
|
"RUF",
|
|
]
|
|
ignore = [
|
|
"E501", # line too long (handled by ruff formatter)
|
|
"B008", # function calls in argument defaults
|
|
"C901", # too complex
|
|
"D100", # missing docstring in public module
|
|
"D101", # missing docstring in public class
|
|
"D102", # missing docstring in public method
|
|
"D103", # missing docstring in public function
|
|
"D104", # missing docstring in public package
|
|
"D105", # missing docstring in magic method
|
|
"D107", # missing docstring in __init__
|
|
"D203", # 1 blank line required before class docstring (conflicts with D211)
|
|
"D213", # multi-line docstring summary should start at the second line (conflicts with D212)
|
|
]
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"__init__.py" = ["F401", "D104"]
|
|
"tests/**/*.py" = ["D", "S101", "PLR2004"] # Allow asserts and magic values in tests
|
|
|
|
[tool.ruff.lint.pydocstyle]
|
|
convention = "google"
|
|
|
|
[tool.ruff.lint.isort]
|
|
known-first-party = ["unraid_mcp"]
|
|
force-single-line = false
|
|
lines-after-imports = 2
|
|
|
|
# ============================================================================
|
|
# Tool Configuration: ty (Type Checking)
|
|
# ============================================================================
|
|
[tool.ty.environment]
|
|
python-version = "3.12"
|
|
|
|
[tool.ty.analysis]
|
|
respect-type-ignore-comments = true
|
|
|
|
# ============================================================================
|
|
# Tool Configuration: pytest (Testing)
|
|
# ============================================================================
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
cache_dir = ".cache/.pytest_cache"
|
|
testpaths = ["tests"]
|
|
python_files = ["test_*.py", "*_test.py"]
|
|
python_classes = ["Test*"]
|
|
python_functions = ["test_*"]
|
|
addopts = [
|
|
"-ra",
|
|
"--strict-markers",
|
|
"--strict-config",
|
|
"--tb=short",
|
|
"-v",
|
|
]
|
|
markers = [
|
|
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
|
|
"integration: marks tests as integration tests",
|
|
"unit: marks tests as unit tests",
|
|
]
|
|
filterwarnings = [
|
|
"error",
|
|
"ignore::DeprecationWarning",
|
|
"ignore::PendingDeprecationWarning",
|
|
]
|
|
|
|
# ============================================================================
|
|
# Tool Configuration: Coverage
|
|
# ============================================================================
|
|
[tool.coverage.run]
|
|
source = ["unraid_mcp"]
|
|
branch = true
|
|
parallel = true
|
|
data_file = ".cache/.coverage"
|
|
omit = [
|
|
"*/tests/*",
|
|
"*/__pycache__/*",
|
|
"*/.venv/*",
|
|
]
|
|
|
|
[tool.coverage.report]
|
|
precision = 2
|
|
show_missing = true
|
|
skip_covered = false
|
|
exclude_lines = [
|
|
"pragma: no cover",
|
|
"def __repr__",
|
|
"def __str__",
|
|
"if self.debug:",
|
|
"if settings.DEBUG",
|
|
"raise AssertionError",
|
|
"raise NotImplementedError",
|
|
"if 0:",
|
|
"if False:",
|
|
"if __name__ == .__main__.:",
|
|
"if TYPE_CHECKING:",
|
|
"class .*\\bProtocol\\):",
|
|
"@(abc\\.)?abstractmethod",
|
|
"@(typing\\.)?overload",
|
|
]
|
|
|
|
[tool.coverage.html]
|
|
directory = ".cache/htmlcov"
|
|
|
|
[tool.coverage.xml]
|
|
output = ".cache/coverage.xml"
|
|
|
|
# ============================================================================
|
|
# Tool Configuration: Dependency Groups (uv-specific)
|
|
# ============================================================================
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.4.2",
|
|
"pytest-asyncio>=1.2.0",
|
|
"pytest-cov>=7.0.0",
|
|
"respx>=0.22.0",
|
|
"types-pytz>=2025.2.0.20250809",
|
|
"ty>=0.0.15",
|
|
"ruff>=0.12.8",
|
|
"build>=1.2.2",
|
|
"twine>=6.0.1",
|
|
"graphql-core>=3.2.0",
|
|
]
|