-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsample-config.json
More file actions
45 lines (45 loc) · 1.31 KB
/
sample-config.json
File metadata and controls
45 lines (45 loc) · 1.31 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
42
43
44
45
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["@modelcontextprotocol/server-everything"],
"env": {
"HELLO": "Hello MCP!"
},
"description": "Comprehensive test server with all MCP capabilities"
},
"filesystem": {
"command": "npx",
"args": ["@modelcontextprotocol/server-filesystem", "/tmp"],
"description": "File system access server for /tmp directory"
},
"git": {
"command": "npx",
"args": ["@modelcontextprotocol/server-git", "--repository", "."],
"description": "Git operations server for current directory"
},
"brave-search": {
"command": "npx",
"args": ["@modelcontextprotocol/server-brave-search"],
"env": {
"BRAVE_API_KEY": "your-api-key-here"
},
"description": "Web search capabilities via Brave Search API",
"enabled": false
},
"postgres": {
"command": "npx",
"args": [
"@modelcontextprotocol/server-postgres",
"postgresql://localhost/testdb"
],
"description": "PostgreSQL database server (requires local DB)",
"enabled": false
},
"memory": {
"command": "npx",
"args": ["@modelcontextprotocol/server-memory"],
"description": "Simple in-memory storage server for development"
}
}
}