Skip to content

Commit bab6327

Browse files
committed
add sample config
1 parent 210ae6b commit bab6327

2 files changed

Lines changed: 29 additions & 2 deletions

File tree

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,3 @@ build/
3333

3434
### Mac OS ###
3535
.DS_Store
36-
37-
sample-config/

sample-config/sample-config.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"chatModel": {
3+
"type": "openai",
4+
"apiKeyEnv": "OPENAI_API_KEY",
5+
"model": "gpt-4.1-nano",
6+
"temperature": 0
7+
},
8+
"servers": [
9+
{
10+
"type": "stdio",
11+
"name": "server-memory",
12+
"command": "npx",
13+
"args": [
14+
"-y",
15+
"@modelcontextprotocol/server-memory"
16+
]
17+
},
18+
{
19+
"type": "stdio",
20+
"name": "filesystem",
21+
"command": "npx",
22+
"args": [
23+
"-y",
24+
"@modelcontextprotocol/server-filesystem",
25+
"/path"
26+
]
27+
}
28+
]
29+
}

0 commit comments

Comments
 (0)