-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbasic.yaml
More file actions
34 lines (31 loc) · 774 Bytes
/
basic.yaml
File metadata and controls
34 lines (31 loc) · 774 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
version: '1'
servers:
# Filesystem access - provides tools to read, write, and search files
filesystem:
protocol: stdio
command: npx
args:
- "-y"
- "@modelcontextprotocol/server-filesystem"
- "${HOME}"
capabilities: [resources, tools]
volumes:
- "${HOME}:${HOME}:ro"
# Memory - persistent key-value storage across sessions
memory:
protocol: stdio
command: npx
args:
- "-y"
- "@modelcontextprotocol/server-memory"
capabilities: [resources, tools]
# Brave Search - web search capabilities
brave-search:
protocol: stdio
command: npx
args:
- "-y"
- "@modelcontextprotocol/server-brave-search"
capabilities: [tools]
env:
BRAVE_API_KEY: "${BRAVE_API_KEY}"