-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.example.env
More file actions
44 lines (37 loc) · 2.02 KB
/
.example.env
File metadata and controls
44 lines (37 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Engram developer environment
# Copy to .env and customize. Never commit .env.
# ─── Vault ────────────────────────────────────────────────────────────────────
# Path to the Obsidian vault used for plugin development.
# Defaults to ./tmp/vault relative to the repo root.
ENGRAM_VAULT_PATH=
# ─── MCP client auto-configuration ───────────────────────────────────────────
# Set any of these to "true" and re-run setup-dev.sh to have the script
# automatically register the Engram MCP server (scripts/mcp.sh) with that client.
# The server will point at ENGRAM_VAULT_PATH.
# Claude Desktop
# Config file: ~/Library/Application Support/Claude/claude_desktop_config.json
MCP_CONFIGURE_CLAUDE_DESKTOP=false
# Claude Code CLI (uses `claude mcp add`)
MCP_CONFIGURE_CLAUDE_CODE=false
# Scope: "local" (project .claude/settings.json) or "user" (global ~/.claude/settings.json)
# Leave blank to be prompted interactively when MCP_CONFIGURE_CLAUDE_CODE=true.
MCP_CLAUDE_CODE_SCOPE=
# Cursor
# Config file: ~/.cursor/mcp.json
MCP_CONFIGURE_CURSOR=false
# Windsurf (Codeium)
# Config file: ~/.codeium/windsurf/mcp_config.json
MCP_CONFIGURE_WINDSURF=false
# ─── Manual setup for other clients ──────────────────────────────────────────
# These clients need manual config (different JSON schemas or no auto-setup yet):
#
# Zed — add to ~/.config/zed/settings.json:
# "context_servers": {
# "engram": { "command": { "path": "/path/to/engram/scripts/mcp.sh", "args": [] } }
# }
#
# Continue (VS Code) — add to ~/.continue/config.json:
# "mcpServers": [{ "name": "engram", "command": "/path/to/engram/scripts/mcp.sh" }]
#
# Cline (VS Code) — add via the Cline sidebar > MCP Servers > Configure
# command: /path/to/engram/scripts/mcp.sh