# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
build:
dockerBuildPath: ./
startCommand:
type: http
configSchema:
type: object
required: ["API_TOKEN"]
properties:
API_TOKEN:
type: string
title: "Hostinger API Token"
description: "Your Hostinger API token for authentication"
DEBUG:
type: boolean
default: false
title: "Debug Mode"
description: "Enable debug logging"
commandFunction: |
(config) => ({
command: 'node',
args: ['server.js'],
env: {
API_TOKEN: config.API_TOKEN,
DEBUG: config.DEBUG?.toString() || 'false',
PORT: config.port?.toString() || '8100'
}
})
exampleConfig:
API_TOKEN: "your-api-token-here"
DEBUG: false