Initial commit: multi-instance Transmission MCP server
Some checks failed
Build and Push Docker Image / build (push) Failing after 42s

This commit is contained in:
Ben
2025-12-30 04:38:44 +00:00
commit 7812a3c42d
10 changed files with 2122 additions and 0 deletions

25
pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[project]
name = "transmission-mcp"
version = "0.1.0"
description = "MCP server for managing multiple Transmission daemon instances"
requires-python = ">=3.11"
dependencies = [
"fastmcp>=2.0.0",
"httpx>=0.28.0",
"starlette>=0.45.0",
"uvicorn>=0.34.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["."]