-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.mcp.json
More file actions
46 lines (46 loc) · 1.72 KB
/
.mcp.json
File metadata and controls
46 lines (46 loc) · 1.72 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
{
"mcpServers": {
"claude-flow": {
"command": "sh",
"args": [
"-c",
"npx -y @claude-flow/cli@latest mcp start 2>/tmp/.cf-err.$$ || { if grep -qE 'ENOTEMPTY|ECOMPROMISED' /tmp/.cf-err.$$ 2>/dev/null; then rm -rf ~/.npm/_npx ~/.npm/_cacache 2>/dev/null; exec npx -y @claude-flow/cli@latest mcp start; else cat /tmp/.cf-err.$$ >&2; exit 1; fi; }"
],
"env": {
"npm_config_prefer_online": "true",
"npm_config_update_notifier": "false",
"CLAUDE_FLOW_MODE": "v3",
"CLAUDE_FLOW_HOOKS_ENABLED": "true",
"CLAUDE_FLOW_TOPOLOGY": "hierarchical-mesh",
"CLAUDE_FLOW_MAX_AGENTS": "15",
"CLAUDE_FLOW_MEMORY_BACKEND": "hybrid"
},
"autoStart": false
},
"ruv-swarm": {
"command": "sh",
"args": [
"-c",
"npx -y ruv-swarm mcp start 2>/tmp/.cf-err.$$ || { if grep -qE 'ENOTEMPTY|ECOMPROMISED' /tmp/.cf-err.$$ 2>/dev/null; then rm -rf ~/.npm/_npx ~/.npm/_cacache 2>/dev/null; exec npx -y ruv-swarm mcp start; else cat /tmp/.cf-err.$$ >&2; exit 1; fi; }"
],
"env": {
"npm_config_prefer_online": "true",
"npm_config_update_notifier": "false"
},
"optional": true
},
"flow-nexus": {
"command": "sh",
"args": [
"-c",
"npx -y flow-nexus@latest mcp start 2>/tmp/.cf-err.$$ || { if grep -qE 'ENOTEMPTY|ECOMPROMISED' /tmp/.cf-err.$$ 2>/dev/null; then rm -rf ~/.npm/_npx ~/.npm/_cacache 2>/dev/null; exec npx -y flow-nexus@latest mcp start; else cat /tmp/.cf-err.$$ >&2; exit 1; fi; }"
],
"env": {
"npm_config_prefer_online": "true",
"npm_config_update_notifier": "false"
},
"optional": true,
"requiresAuth": true
}
}
}