Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ pids
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Worktrees
.worktrees/

# Temporary folders
tmp/
temp/
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ Advanced with env vars (all vars are optional)
"GEMINI_API_KEY": "your-api-key-here",
"MCP_EMBEDDING_MODEL": "Xenova/all-MiniLM-L6-v2",
"START_WEB_UI": "true",
"WEB_HOST": "127.0.0.1",
"WEB_PORT": "3080",
}
}
Expand Down Expand Up @@ -152,6 +153,7 @@ Configure via environment variables or a `.env` file in the project root:
| `GEMINI_API_KEY` | — | Google Gemini API key (enables `search_documents_with_ai`) |
| `MCP_CACHE_ENABLED` | `true` | Enable/disable LRU embedding cache |
| `START_WEB_UI` | `true` | Set to `false` to disable the built-in web interface |
| `WEB_HOST` | `127.0.0.1` | Bind address for the web UI (use `0.0.0.0` to expose on all interfaces) |
| `WEB_PORT` | `3080` | Port for the web UI |
| `MCP_STREAMING_ENABLED` | `true` | Enable streaming reads for large files |
| `MCP_STREAM_CHUNK_SIZE` | `65536` | Streaming buffer size in bytes (64KB) |
Expand Down
Loading
Loading