-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathborg.config.json
More file actions
36 lines (36 loc) · 871 Bytes
/
borg.config.json
File metadata and controls
36 lines (36 loc) · 871 Bytes
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
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"./"
],
"enabled": false,
"env": {}
},
"git": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-v",
"${PWD}:/git",
"modelcontextprotocol/server-git"
],
"enabled": false,
"env": {}
},
"memora": {
"command": "memora-server",
"args": [],
"enabled": false,
"env": {
"MEMORA_DB_PATH": "./data/memory/memora.db",
"MEMORA_ALLOW_ANY_TAG": "1"
}
}
}
}