-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp.docker.json
More file actions
165 lines (165 loc) · 4.22 KB
/
mcp.docker.json
File metadata and controls
165 lines (165 loc) · 4.22 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
{
"mcpServers": {
"filesystem": {
"command": "node",
"args": [
"/app/node_modules/@modelcontextprotocol/server-filesystem/dist/index.js",
"/app"
]
},
"git": {
"command": "node",
"args": [
"/app/node_modules/@modelcontextprotocol/server-git/dist/index.js"
]
},
"brain": {
"url": "http://localhost:3002/sse"
},
"context_server": {
"command": "node",
"args": ["/app/dist/mcp_servers/context_server.js"]
},
"company": {
"command": "node",
"args": ["/app/dist/mcp_servers/company/index.js"]
},
"sop_engine": {
"command": "node",
"args": ["/app/dist/mcp_servers/sop_engine/index.js"]
},
"claude-server": {
"command": "node",
"args": ["/app/dist/mcp_servers/claude-server.js"]
},
"openclaw": {
"command": "node",
"args": ["/app/dist/mcp_servers/openclaw/index.js"]
},
"picoclaw": {
"command": "node",
"args": ["/app/dist/mcp_servers/picoclaw/index.js"]
},
"swarm": {
"command": "node",
"args": ["/app/dist/mcp_servers/swarm/index.js"]
},
"cursor": {
"command": "node",
"args": ["/app/dist/mcp_servers/cursor/index.js"]
},
"windsurf": {
"command": "node",
"args": ["/app/dist/mcp_servers/windsurf/index.js"]
},
"v0dev": {
"command": "node",
"args": ["/app/dist/mcp_servers/v0dev/index.js"]
},
"boltnew": {
"command": "node",
"args": ["/app/dist/mcp_servers/boltnew/index.js"]
},
"vibecoder": {
"command": "node",
"args": ["/app/dist/mcp_servers/vibecoder/index.js"]
},
"health_monitor": {
"command": "node",
"args": ["/app/dist/mcp_servers/health_monitor/index.js"]
},
"dreaming": {
"command": "node",
"args": ["/app/dist/mcp_servers/dreaming/index.js"]
},
"operational_persona": {
"url": "http://operational_persona:3005/sse"
},
"desktop": {
"command": "node",
"args": ["/app/dist/mcp_servers/desktop/index.js"],
"env": {
"MCP_DISABLE_DEPENDENCIES": "true"
}
}
},
"scheduledTasks": [
{
"id": "nightly_dreaming",
"name": "Nightly Dreaming",
"trigger": "cron",
"schedule": "0 2 * * *",
"action": "mcp.call_tool",
"args": {
"server": "dreaming",
"tool": "start_dreaming_session",
"arguments": { "simulation_count": 5 }
},
"description": "Offline simulation to replay and fix past failures."
},
{
"id": "health_check",
"name": "System Health Check",
"trigger": "cron",
"schedule": "*/5 * * * *",
"action": "mcp.call_tool",
"args": {
"server": "health_monitor",
"tool": "check_alerts",
"arguments": {}
},
"description": "Periodically checks system health metrics against configured thresholds."
},
{
"id": "morning-standup",
"name": "Morning Standup",
"trigger": "cron",
"schedule": "0 9 * * *",
"action": "mcp.call_tool",
"args": {
"server": "operational_persona",
"tool": "generate_daily_standup",
"arguments": { "post": true }
},
"description": "Daily standup report generation and posting."
}
],
"agents": {
"codex": {
"command": "gh",
"args": ["copilot", "suggest"],
"description": "GitHub Copilot CLI for snippet generation.",
"supports_stdin": false
},
"gemini": {
"command": "gemini",
"args": [],
"description": "Google Gemini CLI for research and reasoning.",
"supports_stdin": true
},
"aider": {
"command": "aider",
"args": [],
"description": "Aider AI pair programmer in your terminal.",
"supports_stdin": false
},
"claude": {
"command": "claude",
"args": [],
"description": "Claude CLI.",
"supports_stdin": false
},
"crewai": {
"command": "crewai",
"args": [],
"description": "CrewAI agent framework.",
"supports_stdin": false
},
"devin": {
"command": "devin",
"args": [],
"description": "Devin AI software engineer.",
"supports_stdin": false
}
}
}