Files
openworker/.claude/launch.json
T
Rohit C Prasad 2414b4a215 Retire MCP tab: custom servers live on the Connectors page
Custom - MCP group after Connected; Add custom server modal at top; per-server detail subpage with Test.
Status never claims connected for stdio: Live / Ready + persisted tested-at / Not tested / Needs sign-in / Error.
2026-08-20 16:22:41 -07:00

30 lines
621 B
JSON

{
"version": "0.0.1",
"configurations": [
{
"name": "server",
"runtimeExecutable": "/usr/bin/env",
"runtimeArgs": [
"PYTHONPATH=/Users/rohit/fleet/ro4d/openworker-mcpvis",
"/Users/rohit/fleet/ro4d/openworker/.venv/bin/python",
"-m",
"coworker.server.run",
"--port",
"8765"
],
"port": 8765
},
{
"name": "gui",
"runtimeExecutable": "npm",
"runtimeArgs": [
"--prefix",
"/Users/rohit/fleet/ro4d/openworker-mcpvis/surfaces/gui",
"run",
"dev"
],
"port": 1420
}
]
}