⚠️ IMPORTANT: All features are experimental, under active development. Use at your own risk. Customization to your workflow required. © 2026 GLG, a.s. | ← Back to Index

18. Configuration Reference

Config File Location

~/.uaml/config.yaml

Key Settings

# Storage
storage:
  path: ~/.uaml/memory.db
  max_memories: 100000        # depends on tier

# Focus Engine
focus:
  preset: standard            # conservative | standard | research
  min_relevance: 0.3
  max_tokens_per_entry: 2000
  freshness_decay: 0.95
  pii_policy: mask            # allow | mask | reject

# MCP Server
mcp:
  port: 8770
  enabled: true

# Dashboard
dashboard:
  port: 8780
  enabled: true

# Sync (Team+)
sync:
  enabled: false
  node_id: my-agent
  sync_interval: 300          # seconds

# Telemetry
telemetry: true               # opt-out: set to false

Environment Variables

All settings can be overridden with UAML_ prefix:

UAML_STORAGE_PATH=~/custom/memory.db
UAML_FOCUS_PRESET=conservative
UAML_MCP_PORT=8770
UAML_TELEMETRY=false