smithery.yaml•1.02 kB
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
startCommand:
type: stdio
configSchema:
type: object
properties:
debug:
type: boolean
description: "Enable debug mode for detailed logging"
default: false
apiUrl:
type: string
description: "League of Legends API endpoint URL"
default: "https://1tier.xyz/vs4"
language:
type: string
description: "Default language for match simulations"
default: "EN"
enum: ["EN", "ENGLISH", "한국어", "繁體中文", "日本語", "ESPAÑOL", "বাংলা", "ਪੰਜਾਬੀ"]
commandFunction: |
(config) => ({
command: 'python3',
args: ['main.py'].concat(config.debug ? ['--debug'] : []),
env: {
LOL_API_URL: config.apiUrl || "https://1tier.xyz/vs4",
LOL_DEFAULT_LANGUAGE: config.language || "EN",
}
})
exampleConfig:
debug: false
apiUrl: "https://1tier.xyz/vs4"
language: "EN"