33 lines
773 B
Plaintext
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
|