smithery.http.yaml.example•942 B
# Example Smithery configuration for Streamable HTTP transport
#
# Consult the latest Smithery docs to confirm the exact schema keys.
# Replace your existing `smithery.yaml` once verified.
startCommand:
type: http
# Command to start the HTTP server. Our binary supports `--http`, `--host`, `--port`.
commandFunction:
|-
(config) => ({
command: 'sitebay-mcp',
args: ['--http', '--host', '0.0.0.0', '--port', String(config.port || 7823)],
env: { SITEBAY_API_TOKEN: config.sitebayApiToken }
})
# Typical fields; verify with Smithery docs. Some hosts auto-assign ports.
configSchema:
type: object
required: [sitebayApiToken]
properties:
sitebayApiToken:
type: string
description: Your SiteBay API token
port:
type: number
description: Port to bind (defaults to 7823)
exampleConfig:
sitebayApiToken: your_sitebay_api_token_here
port: 7823