-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp.json.template
More file actions
55 lines (55 loc) · 1.11 KB
/
Copy pathmcp.json.template
File metadata and controls
55 lines (55 loc) · 1.11 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
{
"settings": {
"directTools": false,
"idleTimeout": 0
},
"mcpServers": {
"exa": {
"command": "npx",
"args": [
"-y",
"exa-mcp-server"
],
"env": {
"EXA_API_KEY": "${EXA_API_KEY}"
},
"lifecycle": "keep-alive",
"directTools": false
},
"agent-browser": {
"command": "agent-browser",
"args": [
"mcp",
"--tools",
"core,network,tabs,state,react,debug"
],
"env": {
"AGENT_BROWSER_SESSION": "${PI_WORKTREE_ID}",
"AGENT_BROWSER_IDLE_TIMEOUT_MS": "300000"
},
"lifecycle": "keep-alive",
"directTools": false
},
"chrome-devtools": {
"command": "chrome-devtools-mcp",
"args": [
"--wsEndpoint",
"ws://127.0.0.1:9222",
"--experimentalVision"
],
"env": {},
"enabled": false
},
"context7-mcp": {
"command": "npx",
"args": [
"-y",
"@upstash/context7-mcp"
],
"env": {
"CONTEXT7_API_KEY": "${CONTEXT7_API_KEY}"
},
"lifecycle": "keep-alive"
}
}
}