-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmcp-config-example.json
More file actions
54 lines (54 loc) · 1.56 KB
/
mcp-config-example.json
File metadata and controls
54 lines (54 loc) · 1.56 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
46
47
48
49
50
51
52
53
54
{
"mcpServers": {
"context7": {
"command": "npx",
"args": ["-y", "@upstash/context7-mcp"]
},
"Docker_MCP_Toolkit": {
"command": "docker",
"args": ["mcp", "gateway", "run"],
"type": "stdio"
},
"perplexity-mcp": {
"type": "stdio",
"command": "perplexity-mcp",
"env": {
"PERPLEXITY_API_KEY": "your-perplexity-api-key-here"
}
},
"playwright": {
"command": "npx",
"args": ["@playwright/mcp@latest", "--isolated", "--storage-state={/path/to/your/playwright/storage.json}"]
},
"sequential-thinking": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
},
"zen": {
"command": "sh",
"args": [
"-c",
"exec $(which uvx || echo uvx) --from git+https://github.com/BeehiveInnovations/zen-mcp-server.git zen-mcp-server"
],
"env": {
"PATH": "/usr/local/bin:/usr/bin:/bin:/opt/homebrew/bin:~/.local/bin",
"OPENAI_API_KEY": "your-openai-api-key-here",
"GEMINI_API_KEY": "your-gemini-api-key-here",
"OPENROUTER_API_KEY": "your-openrouter-api-key-here"
}
},
"serena": {
"command": "/Users/your-username/.local/bin/uvx",
"args": ["--from", "git+https://github.com/oraios/serena", "serena", "start-mcp-server"]
},
"filesystem-with-morph": {
"type": "stdio",
"command": "npx",
"args": ["@morph-llm/morph-fast-apply"],
"env": {
"MORPH_API_KEY": "your-morph-api-key-here",
"ALL_TOOLS": "false"
}
}
}
}