Initial commit: multi-instance Transmission MCP server
Some checks failed
Build and Push Docker Image / build (push) Failing after 42s
Some checks failed
Build and Push Docker Image / build (push) Failing after 42s
This commit is contained in:
32
.env.example
Normal file
32
.env.example
Normal 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
|
||||
Reference in New Issue
Block a user