-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.mcp.example.json
More file actions
34 lines (34 loc) · 1014 Bytes
/
.mcp.example.json
File metadata and controls
34 lines (34 loc) · 1014 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
{
"$comment": "Copy this file to .mcp.json and configure your MCP servers",
"$note": ".mcp.json is gitignored to prevent committing API keys",
"mcpServers": {
"automem": {
"type": "stdio",
"comment": "Memory storage with embeddings - OPTIONAL",
"command": "node",
"args": ["/path/to/mcp-automem/dist/index.js"],
"env": {
"AUTOMEM_ENDPOINT": "http://127.0.0.1:8001",
"AUTOMEM_API_KEY": "your-api-key-here",
"OPENAI_API_KEY": "your-openai-key-here"
},
"disabled": true
},
"sequential-thinking": {
"type": "stdio",
"comment": "Complex reasoning - OPTIONAL",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"],
"env": {},
"disabled": false
},
"context7": {
"type": "stdio",
"comment": "Library documentation - OPTIONAL",
"command": "npx",
"args": ["-y", "@upstash/context7-mcp"],
"env": {},
"disabled": false
}
}
}