-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathenv.example
More file actions
21 lines (16 loc) · 1007 Bytes
/
Copy pathenv.example
File metadata and controls
21 lines (16 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# AutoMem MCP Server Configuration
# Generate this file automatically with: npx @verygoodplugins/mcp-automem setup
# Required: AutoMem service URL
# For local development (using docker-compose or local Flask app)
AUTOMEM_API_URL=http://127.0.0.1:8001
# For Railway deployment (deploy your own instance)
# AUTOMEM_API_URL=https://your-automem-instance.railway.app
# Note: AUTOMEM_ENDPOINT is the deprecated name and is still read for backwards compatibility.
# Optional: API key for authentication (if your AutoMem service requires it)
# AUTOMEM_API_KEY=your_api_key_here
# Optional (advanced): parent-liveness watchdog poll interval, in milliseconds.
# The stdio server self-terminates when its launching client dies; this sets how
# often it checks (default 30000). POSIX only — has no effect on Windows. Zero,
# negative, or non-numeric values fall back to the 30000 default (the watchdog
# cannot be disabled; it is the fix for an orphaned-process memory leak).
# AUTOMEM_PARENT_WATCHDOG_MS=30000