Files
transmission-mcp/.env.example
Ben 7812a3c42d
Some checks failed
Build and Push Docker Image / build (push) Failing after 42s
Initial commit: multi-instance Transmission MCP server
2025-12-30 04:38:44 +00:00

33 lines
773 B
Plaintext

# 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