-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbridge_config.json.template
More file actions
35 lines (35 loc) · 896 Bytes
/
bridge_config.json.template
File metadata and controls
35 lines (35 loc) · 896 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
{
"mcpServers": {
"sequential-thinking": {
"command": "node",
"args": [
"./node_modules/@modelcontextprotocol/server-sequential-thinking/dist/index.js"
]
},
"filesystem": {
"command": "node",
"args": [
"./node_modules/@modelcontextprotocol/server-filesystem/dist/index.js",
"../workspace"
],
"allowedDirectory": "../workspace"
},
"brave-search": {
"command": "node",
"args": [
"./node_modules/@modelcontextprotocol/server-brave-search/dist/index.js"
],
"env": {
"BRAVE_API_KEY": "$BRAVE_API_KEY"
}
}
},
"llm": {
"model": "qwen:7b",
"baseUrl": "http://localhost:11434",
"apiKey": "ollama",
"temperature": 0.7,
"maxTokens": 1000
},
"systemPrompt": "You are a helpful assistant that can use various tools to help answer questions."
}