Skip to content

Configuration

Environment Variables

VariableDescriptionDefault
FLYTO_LOG_LEVELLog verbosity (debug, info, warn, error)info
FLYTO_EVIDENCE_DIRDirectory for evidence snapshots.flyto/evidence
FLYTO_BROWSER_HEADLESSRun browser in headless modetrue
FLYTO_MCP_PORTPort for HTTP transport8000

Configuration File

Create a .flyto.yaml in your project root:

yaml
log_level: info
evidence:
  enabled: true
  dir: .flyto/evidence
browser:
  headless: true
  timeout: 30000

MCP Server Configuration

STDIO (Default)

bash
flyto-core mcp

Streamable HTTP

bash
flyto-core mcp --transport http --port 8000

With Custom Config

bash
flyto-core mcp --config .flyto.yaml

Released under the Apache 2.0 License.