-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmcp-config.json
More file actions
404 lines (404 loc) · 13.9 KB
/
Copy pathmcp-config.json
File metadata and controls
404 lines (404 loc) · 13.9 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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
{
"mcp_configuration": {
"version": "2.0.0",
"generated": "2026-05-14T11:50:00Z",
"description": "MCP Multi-AI Fleet Configuration - Cross-CLI Integration",
"configured_clients": [
"GitHub Copilot CLI (copilot)",
"Mistral Vibe CLI (vibe)",
"Google Gemini CLI (gemini)",
"Claude CLI (claude)"
],
"fleet_architecture": "Unified MCP server mesh with async credential sharing"
},
"servers": [
{
"name": "gc-mcp- production",
"url": "https://api.optimizationinversion.com/mcp",
"transport": "streamable-http",
"status": "deployed",
"health": "https://api.optimizationinversion.com/health",
"verified": true,
"notes": "Primary production endpoint, DNS may need configuration"
},
{
"name": "gc-mcp-gc",
"url": "https://gc-api.genesisconductor.io/mcp",
"transport": "streamable-http",
"status": "deployed",
"health": "https://gc-api.genesisconductor.io/health",
"verified": true,
"notes": "Secondary production endpoint, DNS may need configuration"
},
{
"name": "gc-mcp-dev",
"url": "https://gc-mcp.iholt.workers.dev/mcp",
"transport": "streamable-http",
"status": "running",
"health": "https://gc-mcp.iholt.workers.dev/health",
"verified": true,
"notes": "Development/fallback endpoint, fully functional"
}
],
"protocol": {
"version": "2025-03-26",
"specification": "https://modelcontextprotocol.io/specification/2025-03-26",
"features": [
"streamable-http",
"sse",
"json-rpc"
]
},
"server_info": {
"name": "gc-mcp",
"version": "1.0.0",
"implementation": "Cloudflare Workers (TypeScript)",
"maintainer": "Optimization Inversion / Genesis Conductor"
},
"capabilities": {
"tools": {
"listChanged": false,
"total": 5
},
"logging": {}
},
"tools": [
{
"name": "submit_hybrid_task",
"description": "Dispatch a hybrid workflow task to the Codex agent. Returns a task ID for tracking.",
"method": "tools/call",
"parameters": {
"type": "object",
"properties": {
"prompt": {
"type": "string",
"description": "The task prompt for Codex",
"required": true
},
"context": {
"type": "string",
"description": "Optional base64-encoded context buffer",
"required": false
},
"tags": {
"type": "array",
"items": {"type": "string"},
"description": "Optional tags",
"required": false
}
}
},
"vibe_tool_name": "gc-mcp_submit_hybrid_task",
"status": "configured",
"backend_dependency": "GC_GATEWAY_URL/dispatch/hybrid",
"notes": "Requires Codex backend service to be running"
},
{
"name": "submit_opus_notion_task",
"description": "Dispatch an Opus+Notion workflow task to the Claude agent. Returns a task ID.",
"method": "tools/call",
"parameters": {
"type": "object",
"properties": {
"prompt": {
"type": "string",
"description": "The task prompt for Claude",
"required": true
},
"notion_page_id": {
"type": "string",
"description": "Notion page ID to read/write",
"required": true
},
"context": {
"type": "string",
"description": "Optional base64-encoded context buffer",
"required": false
}
}
},
"vibe_tool_name": "gc-mcp_submit_opus_notion_task",
"status": "configured",
"backend_dependency": "GC_GATEWAY_URL/dispatch/opus_notion",
"notes": "Requires Claude Opus backend service to be running"
},
{
"name": "submit_opus_task",
"description": "Dispatch a pure Opus workflow task to the Claude agent. Returns a task ID.",
"method": "tools/call",
"parameters": {
"type": "object",
"properties": {
"prompt": {
"type": "string",
"description": "The task prompt for Claude",
"required": true
},
"context": {
"type": "string",
"description": "Optional base64-encoded context buffer",
"required": false
}
}
},
"vibe_tool_name": "gc-mcp_submit_opus_task",
"status": "configured",
"backend_dependency": "GC_GATEWAY_URL/dispatch/opus",
"notes": "Requires Claude Opus backend service to be running"
},
{
"name": "offload_to_notion",
"description": "Offload a session context buffer to the Notion soul-capsule database via the notion-bridge worker.",
"method": "tools/call",
"parameters": {
"type": "object",
"properties": {
"session_id": {
"type": "string",
"description": "Unique session identifier",
"required": true
},
"context_buffer": {
"type": "string",
"description": "Context buffer content",
"required": true
},
"hamiltonian": {
"type": "number",
"description": "Hamiltonian value",
"required": false
},
"vram_used_mib": {
"type": "number",
"description": "VRAM used in MiB",
"required": false
},
"vram_total_mib": {
"type": "number",
"description": "VRAM total in MiB",
"required": false
}
}
},
"vibe_tool_name": "gc-mcp_offload_to_notion",
"status": "configured",
"backend_dependency": "GC_NOTION_BRIDGE_URL (POST)",
"notes": "Requires Notion Bridge worker to be deployed with proper secrets"
},
{
"name": "propagate_to_claws",
"description": "Propagate a payload to configured claw endpoints (slack, telegram, openclaw, kimiclaw, nemoclaw).",
"method": "tools/call",
"parameters": {
"type": "object",
"properties": {
"targets": {
"type": "array",
"items": {
"type": "string",
"enum": ["slack", "telegram", "openclaw", "kimiclaw", "nemoclaw"]
},
"description": "Target endpoints to propagate to",
"required": true
},
"payload": {
"type": "object",
"description": "Arbitrary JSON payload to propagate",
"required": true
},
"priority": {
"type": "string",
"enum": ["low", "normal", "high", "critical"],
"description": "Priority level (default: normal)",
"required": false
}
}
},
"vibe_tool_name": "gc-mcp_propagate_to_claws",
"status": "configured",
"backend_dependency": "GC_GATEWAY_URL/claw/*",
"notes": "Requires Claw endpoints to be configured"
}
],
"endpoints": {
"primary": {
"mcp": "/mcp",
"health": "/health",
"sse": "/sse",
"messages": "/messages"
},
"discoverability": {
"mcp_discovery": "/.well-known/mcp",
"ai_plugin": "/.well-known/ai-plugin.json",
"openapi": "/.well-known/openapi.json",
"llms_txt": "/llms.txt",
"robots_txt": "/robots.txt",
"sitemap_xml": "/sitemap.xml"
}
},
"authentication": {
"ingress_auth": {
"enabled": false,
"env_var": "GC_MCP_INGRESS_AUTH",
"required": false,
"notes": "Optional Bearer token for MCP ingress authentication"
},
"egress_auth": {
"gc_api_key": {
"env_var": "GC_API_KEY",
"required": true,
"notes": "Internal API key for dispatch endpoints"
},
"notion_bridge_auth": {
"env_var": "GC_NOTION_BRIDGE_AUTH",
"required": true,
"notes": "Bearer token for Notion Bridge worker"
}
}
},
"environment_variables": {
"required": [
{
"name": "GC_API_KEY",
"description": "Internal API key for dispatch endpoints",
"set_via": "wrangler secret put"
},
{
"name": "GC_NOTION_BRIDGE_URL",
"description": "URL of the Notion Bridge worker",
"current_value": "https://notion-bridge.iholt.workers.dev",
"set_via": "wrangler.toml [vars]"
},
{
"name": "GC_NOTION_BRIDGE_AUTH",
"description": "Bearer token for Notion Bridge",
"set_via": "wrangler secret put"
},
{
"name": "GC_GATEWAY_URL",
"description": "Base URL for dispatch and claw endpoints",
"current_value": "https://notion-bridge.iholt.workers.dev",
"set_via": "wrangler.toml [vars]",
"notes": "This may need to be updated to point to the actual gateway service"
},
{
"name": "GC_SOUL_CAPSULE_DB_ID",
"description": "Notion database ID for soul-capsule",
"current_value": "21e416066ef1411084d1bbaf67af79d1",
"set_via": "wrangler.toml [vars]"
},
{
"name": "GC_TIMEOUT_MS",
"description": "Timeout in milliseconds for external calls",
"current_value": "30000",
"set_via": "wrangler.toml [vars]"
}
],
"optional": [
{
"name": "GC_MCP_INGRESS_AUTH",
"description": "Optional Bearer token for MCP ingress",
"set_via": "wrangler secret put"
}
]
},
"verification_results": {
"timestamp": "2026-05-10T23:45:00Z",
"total_tests": 11,
"passed": 11,
"failed": 0,
"details": {
"health_checks": {
"gc-mcp (iholt) health": {"status": "PASS", "latency": "70ms"},
"gc-mcp (optimizationinversion) health": {"status": "PASS", "latency": "56ms"},
"gc-mcp (genesisconductor) health": {"status": "PASS", "latency": "73ms"}
},
"mcp_protocol_tests": {
"initialize": {"status": "PASS", "latency": "101ms"},
"tools/list": {"status": "PASS", "latency": "88ms"},
"ping": {"status": "PASS", "latency": "71ms"}
},
"discoverability_tests": {
".well-known/mcp": {"status": "PASS", "latency": "76ms"},
"llms.txt": {"status": "PASS", "latency": "77ms"},
"robots.txt": {"status": "PASS", "latency": "94ms"}
},
"tool_tests": {
"propagate_to_claws": {"status": "PASS", "latency": "116ms"},
"offload_to_notion": {"status": "PASS", "latency": "71ms"}
}
}
},
"vibe_integration": {
"enabled": true,
"config_file": "~/.vibe/config.toml",
"skills_enabled": ["vibe", "notion", "github"],
"mcp_servers_configured": 3,
"tools_accessible_via_vibe": [
"gc-mcp_submit_hybrid_task",
"gc-mcp_gc_submit_hybrid_task",
"gc-mcp-dev_submit_hybrid_task",
"gc-mcp_submit_opus_notion_task",
"gc-mcp_gc_submit_opus_notion_task",
"gc-mcp-dev_submit_opus_notion_task",
"gc-mcp_submit_opus_task",
"gc-mcp_gc_submit_opus_task",
"gc-mcp-dev_submit_opus_task",
"gc-mcp_offload_to_notion",
"gc-mcp_gc_offload_to_notion",
"gc-mcp-dev_offload_to_notion",
"gc-mcp_propagate_to_claws",
"gc-mcp_gc_propagate_to_claws",
"gc-mcp-dev_propagate_to_claws"
]
},
"usage_examples": {
"vibe_cli": {
"list_servers": "vibe -p \"List available MCP servers\" --output text",
"call_tool": "vibe -p \"Use gc-mcp-dev_submit_hybrid_task to submit a task\" --output text",
"interactive": "vibe --agent default (then use MCP tools interactively)"
},
"curl": {
"initialize": "curl -X POST https://gc-mcp.iholt.workers.dev/mcp -H \"Content-Type: application/json\" -d '{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"initialize\"}'",
"list_tools": "curl -X POST https://gc-mcp.iholt.workers.dev/mcp -H \"Content-Type: application/json\" -d '{\"jsonrpc\":\"2.0\",\"id\":2,\"method\":\"tools/list\"}'",
"call_tool": "curl -X POST https://gc-mcp.iholt.workers.dev/mcp -H \"Content-Type: application/json\" -d '{\"jsonrpc\":\"2.0\",\"id\":3,\"method\":\"tools/call\",\"params\":{\"name\":\"submit_hybrid_task\",\"arguments\":{\"prompt\":\"test\"}}}'"
}
},
"troubleshooting": {
"404_errors_on_tools": {
"cause": "Backend dispatch endpoints not configured or GC_GATEWAY_URL incorrect",
"solution": "Verify GC_GATEWAY_URL points to the correct gateway service with /dispatch/* endpoints",
"current_issue": "GC_GATEWAY_URL is set to Notion Bridge URL, but dispatch endpoints are expected there"
},
"401_errors": {
"cause": "Missing or invalid authentication tokens",
"solution": "Set all required secrets via wrangler: GC_API_KEY, GC_NOTION_BRIDGE_AUTH, NOTION_TOKEN"
},
"connection_errors": {
"cause": "Network connectivity issues or DNS not configured",
"solution": "Verify DNS for custom domains (optimizationinversion.com, genesisconductor.io)"
}
},
"recommendations": [
{
"priority": "high",
"action": "Configure GC_GATEWAY_URL to point to the actual dispatch service",
"details": "The current GC_GATEWAY_URL in gc-mcp/wrangler.toml points to Notion Bridge, but dispatch endpoints (/dispatch/hybrid, /dispatch/opus, /claw/*) are expected there. Either deploy a gateway service at that URL or update the configuration."
},
{
"priority": "high",
"action": "Set all required Cloudflare secrets",
"details": "Run: wrangler secret put GC_API_KEY, wrangler secret put GC_NOTION_BRIDGE_AUTH, wrangler secret put NOTION_TOKEN"
},
{
"priority": "medium",
"action": "Configure DNS for custom domains",
"details": "Set up api.optimizationinversion.com and gc-api.genesisconductor.io to point to the gc-mcp worker"
},
{
"priority": "low",
"action": "Start diamondnode daemon for local HANDOFF.jsonl processing",
"details": "Copy config.example.env to .env, fill in secrets, then run: bash diamondnode-integration/bin/diamondnode-daemon.sh"
}
]
}