-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathenv.example
More file actions
32 lines (24 loc) · 1.76 KB
/
env.example
File metadata and controls
32 lines (24 loc) · 1.76 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
# ─────────────────────────────────────────────────────────────
# Filesystem MCP Server Configuration
# ─────────────────────────────────────────────────────────────
# Server identity
MCP_NAME=filesystem-mcp
MCP_VERSION=1.0.0
# Logging level: debug | info | warning | error
LOG_LEVEL=info
# ─────────────────────────────────────────────────────────────
# Filesystem Mounts
# ─────────────────────────────────────────────────────────────
# Multiple paths (comma-separated) - each becomes a named mount
# Example: FS_ROOTS=/path/to/vault,/path/to/projects
# Creates mounts: vault/, projects/
FS_ROOTS=/Users/me/obsidian-vault,/Users/me/projects
# Single path (backward compatible with FS_ROOT)
# FS_ROOT=/Users/me/documents
# Maximum file size in bytes (default: 1MB = 1048576)
MAX_FILE_SIZE=1048576
# ─────────────────────────────────────────────────────────────
# Optional: Custom Instructions
# ─────────────────────────────────────────────────────────────
# Override default LLM instructions (optional)
# MCP_INSTRUCTIONS="Custom instructions for the LLM..."