You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/development/gateway/process-management.mdx
+25Lines changed: 25 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,31 @@ The Gateway's process management system operates on a **persistent background pr
62
62
</Card>
63
63
</Cards>
64
64
65
+
## Selective Restart Capability
66
+
67
+
The Gateway supports **selective restart** functionality, allowing individual MCP servers to be managed without requiring a full gateway restart. This feature dramatically improves configuration update performance and eliminates downtime for unchanged servers.
68
+
69
+
### Key Features
70
+
71
+
-**Individual Server Control**: Add, remove, or restart specific MCP servers via HTTP API
72
+
-**Change Detection**: Automatically detects added, removed, and modified server configurations
73
+
-**Fallback Safety**: Falls back to full restart if selective operations fail
74
+
-**Zero Downtime**: Unchanged servers continue running during configuration updates
75
+
76
+
### API Endpoints
77
+
78
+
The Gateway exposes HTTP endpoints for selective server management:
79
+
80
+
-`POST /api/mcp/servers` - Add new MCP servers to running gateway
81
+
-`DELETE /api/mcp/servers/:serverName` - Remove specific servers
0 commit comments