-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmcp_servers.example.json
More file actions
90 lines (90 loc) · 2.64 KB
/
Copy pathmcp_servers.example.json
File metadata and controls
90 lines (90 loc) · 2.64 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"mcpServers": {
"chrome-devtools": {
"enabled": true,
"description": "Browser automation: console, navigation, screenshots",
"command": "npx",
"args": ["-y", "chrome-devtools-mcp@latest", "--isolated"],
"persistent": true,
"timeout": 60
},
"playwright": {
"enabled": false,
"description": "Browser automation: elements, snapshots, interactions",
"command": "npx",
"args": ["-y", "@playwright/mcp@latest"],
"persistent": true,
"timeout": 60
},
"context7": {
"enabled": true,
"description": "Code library docs and snippets",
"command": "npx",
"args": ["-y", "@upstash/context7-mcp", "--api-key", "${ENT_CONTEXT7_API_KEY}"],
"persistent": false,
"timeout": 30
},
"sequential-thinking": {
"enabled": false,
"description": "Problem-solving and planning",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"],
"persistent": false,
"timeout": 30
},
"deepwiki": {
"enabled": true,
"description": "Repository documentation from public Git repos",
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.deepwiki.com/mcp"],
"persistent": false,
"timeout": 30
},
"brave-search": {
"enabled": false,
"description": "Search the web, images, videos, news + AI summaries",
"command": "npx",
"args": ["-y", "@brave/brave-search-mcp-server"],
"env": {
"BRAVE_API_KEY": "${ENT_BRAVE_API_KEY}"
},
"persistent": false,
"timeout": 30
},
"time": {
"enabled": false,
"description": "Current time and timezone conversions",
"command": "uvx",
"args": ["mcp-server-time"],
"persistent": false,
"timeout": 30
},
"ai-vision-mcp": {
"enabled": false,
"description": "Image and video analysis via AI vision models (Gemini)",
"command": "npx",
"args": ["ai-vision-mcp"],
"env": {
"IMAGE_PROVIDER": "google",
"VIDEO_PROVIDER": "google",
"GEMINI_API_KEY": "${ENT_GEMINI_API_KEY}"
},
"persistent": false,
"timeout": 60
},
"cipher": {
"enabled": false,
"description": "Memory layer for coding agents: auto-generate AI memories, IDE switching, team sharing",
"type": "stdio",
"command": "cipher",
"args": ["--mode", "mcp"],
"env": {
"MCP_SERVER_MODE": "aggregator",
"OPENAI_API_KEY": "${ENT_OPENAI_API_KEY}",
"ANTHROPIC_API_KEY": "${ENT_ANTHROPIC_API_KEY}"
},
"persistent": false,
"timeout": 30
}
}
}