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

32
.env.example Normal file
View File

@@ -0,0 +1,32 @@
# Transmission MCP Server Configuration
# Copy this file to .env and configure your instances
# JSON array of Transmission instances
# Each instance requires: name, url
# Optional: username, password (for authenticated instances)
TRANSMISSION_INSTANCES='[
{
"name": "home",
"url": "http://192.168.1.100:9091",
"username": "admin",
"password": "secretpassword"
},
{
"name": "seedbox",
"url": "https://seedbox.example.com:443/transmission",
"username": "user",
"password": "pass"
},
{
"name": "local",
"url": "http://localhost:9091"
}
]'
# Default instance to use when no instance is specified
# Must match a "name" from TRANSMISSION_INSTANCES
TRANSMISSION_DEFAULT_INSTANCE=home
# Server settings
HOST=0.0.0.0
PORT=8000