# View all settings
eidet config list
# Get a single value
eidet config get storage.ravenUrl
# Set a value
eidet config set service.port 19380
# JSON output
eidet config list --json
Environment Variable Overrides
Environment variables take precedence over the config file:
Variable
Config path
Example
EIDET_API_URL
service.bindAddress + service.port
http://0.0.0.0:19380
EIDET_RAVEN_URL
storage.ravenUrl
http://ravendb:8080
EIDET_OLLAMA_URL
enrichment.ollamaUrl
http://ollama:11434
EIDET_OLLAMA_MODEL
enrichment.ollamaModel
gemma4
These are useful for Docker and CI/CD environments.
Config Reference
service
Key
Type
Default
Description
service.port
int
19380
HTTP port for REST API and MCP
service.bindAddress
string
127.0.0.1
Bind address (use 0.0.0.0 for network access)
storage
Key
Type
Default
Description
storage.mode
enum
External
External or Embedded
storage.ravenUrl
string
http://localhost:8080
RavenDB connection URL
storage.databaseName
string
Eidet
RavenDB database name
storage.dataDir
string
null
Data directory for embedded mode
memory
Key
Type
Default
Description
memory.l1Count
int
20
Max memories in L1 context
memory.l1MaxTokens
int
500
Max tokens for L1 context
memory.duplicateThreshold
float
0.92
Vector similarity threshold for duplicate detection