# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml

startCommand:
  type: stdio
  configSchema:
    # Minimal JSON Schema for configuration
    type: object
    properties: {}
  exampleConfig: {}
  commandFunction:
    # Simple command to start the MCP server on stdio without additional configuration
    |-
    () => ({
      command: 'node',
      args: ['dist/index.js']
    })
