-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
41 lines (32 loc) · 1.08 KB
/
.env.example
File metadata and controls
41 lines (32 loc) · 1.08 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
# MCP Server Environment Variables
# Copy this file to .env and customize for your deployment
# Server port
Mcp__Port=7147
# Database
Mcp__DataSource=mcp.db
Mcp__DataDirectory=/data
# Workspace (mounted read-only from host)
Mcp__RepoRoot=/workspace
Mcp__TodoFilePath=docs/Project/TODO.yaml
Mcp__SessionsPath=docs/sessions
Mcp__ExternalDocsPath=docs/external
Mcp__UnifiedModelSchemaPath=docs/schemas/UnifiedModel.schema.json
# TODO storage backend: yaml or sqlite
Mcp__TodoStorage__Provider=yaml
Mcp__TodoStorage__SqliteDataSource=mcp.db
# Vector index
VectorIndex__IndexPath=/data/vector.idx
# Embedding model
Embedding__AutoDownload=true
Embedding__Dimensions=384
Embedding__MaxSequenceLength=128
# Interaction logging (optional)
Mcp__InteractionLogging__LoggingServiceUrl=
Mcp__InteractionLogging__QueueCapacity=1000
Mcp__InteractionLogging__IncludeQueryString=false
# Parseable logging sink (optional)
Mcp__Parseable__Url=
Mcp__Parseable__StreamName=mcp
Mcp__Parseable__FallbackLogPath=logs/mcp-.log
# ASP.NET Core
ASPNETCORE_ENVIRONMENT=Production