@loop_ouroboros/mcp-hub-lite 1.2.6 → 1.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/CHANGELOG.md +666 -640
  2. package/dist/client/assets/HomeView-CgEri1kD.js +1 -0
  3. package/dist/client/assets/{ResourceDetailView-BGBtmsyc.js → ResourceDetailView-B8Qo1_jK.js} +1 -1
  4. package/dist/client/assets/ResourcesView-B12FzUdo.js +1 -0
  5. package/dist/client/assets/ServerDashboard-B3O-crvv.js +1 -0
  6. package/dist/client/assets/ServerDetail-Bz5_9yOY.js +2 -0
  7. package/dist/client/assets/{ServerDetail-CtnNKJGx.css → ServerDetail-CXg8rI3q.css} +1 -1
  8. package/dist/client/assets/{ServerListView-C7kcd4GC.js → ServerListView-SlZN8ppC.js} +2 -2
  9. package/dist/client/assets/{ServerStatusTags.vue_vue_type_script_setup_true_lang-BHhwEuGe.js → ServerStatusTags.vue_vue_type_script_setup_true_lang-DmGg4uuV.js} +1 -1
  10. package/dist/client/assets/SettingsView-D8fiOG0O.js +1 -0
  11. package/dist/client/assets/ToolCallDialog-DYEdhnCk.js +1 -0
  12. package/dist/client/assets/ToolsView-BreAl-yn.js +1 -0
  13. package/dist/client/assets/{_baseClone-kbJbcBJT.js → _baseClone-BYxCbA_9.js} +1 -1
  14. package/dist/client/assets/{el-form-item-iQ0G8e97.js → el-form-item-ySymCPMr.js} +2 -2
  15. package/dist/client/assets/el-input-C85p6Nqj.js +1 -0
  16. package/dist/client/assets/el-loading-DIjKEx81.js +1 -0
  17. package/dist/client/assets/{el-overlay-Cy5xg31y.js → el-overlay-B_CxiSem.js} +1 -1
  18. package/dist/client/assets/el-radio-group-BjkTCPRf.js +1 -0
  19. package/dist/client/assets/el-skeleton-item-CupTKK6n.js +1 -0
  20. package/dist/client/assets/{el-switch-KpjV93lm.js → el-switch-BosIJ9jf.js} +1 -1
  21. package/dist/client/assets/el-tab-pane-BydxdJoc.js +1 -0
  22. package/dist/client/assets/{el-table-column-fofd_2n-.js → el-table-column-DV5TZOUW.js} +1 -1
  23. package/dist/client/assets/index-kC4mf0Vo.js +2 -0
  24. package/dist/client/assets/{index-DpH6ZSbs.css → index-xJkq2euk.css} +1 -1
  25. package/dist/client/assets/omit-DxDGRttI.js +1 -0
  26. package/dist/client/assets/{raf-MWAHt9ca.js → raf-Y9AoxecD.js} +1 -1
  27. package/dist/client/assets/{vue-vendor-CbgVSHIh.js → vue-vendor-Dwcr0jep.js} +1 -1
  28. package/dist/client/index.html +3 -3
  29. package/dist/server/shared/types/websocket.types.d.ts +28 -19
  30. package/dist/server/shared/types/websocket.types.d.ts.map +1 -1
  31. package/dist/server/shared/types/websocket.types.js +3 -2
  32. package/dist/server/src/api/web/health.d.ts.map +1 -1
  33. package/dist/server/src/api/web/health.js +5 -0
  34. package/dist/server/src/api/ws/ws-handler.d.ts.map +1 -1
  35. package/dist/server/src/api/ws/ws-handler.js +4 -3
  36. package/dist/server/src/app.d.ts +7 -0
  37. package/dist/server/src/app.d.ts.map +1 -1
  38. package/dist/server/src/app.js +87 -0
  39. package/dist/server/src/models/event.model.d.ts +0 -13
  40. package/dist/server/src/models/event.model.d.ts.map +1 -1
  41. package/dist/server/src/models/server.model.d.ts +0 -29
  42. package/dist/server/src/models/server.model.d.ts.map +1 -1
  43. package/dist/server/src/models/types.d.ts +1 -70
  44. package/dist/server/src/models/types.d.ts.map +1 -1
  45. package/dist/server/src/models/types.js +1 -67
  46. package/dist/server/src/server/dev-server.js +24 -6
  47. package/dist/server/src/services/connection/connection-manager.d.ts +13 -0
  48. package/dist/server/src/services/connection/connection-manager.d.ts.map +1 -1
  49. package/dist/server/src/services/connection/connection-manager.js +122 -5
  50. package/dist/server/src/services/event-bus.service.d.ts +0 -4
  51. package/dist/server/src/services/event-bus.service.d.ts.map +1 -1
  52. package/dist/server/src/services/event-bus.service.js +1 -6
  53. package/dist/server/src/services/gateway/request-handlers/initialize-handler.d.ts.map +1 -1
  54. package/dist/server/src/services/gateway/request-handlers/initialize-handler.js +1 -0
  55. package/dist/server/src/services/mcp-oauth/index.d.ts +5 -0
  56. package/dist/server/src/services/mcp-oauth/index.d.ts.map +1 -0
  57. package/dist/server/src/services/mcp-oauth/index.js +3 -0
  58. package/dist/server/src/services/mcp-oauth/oauth-callback-server.d.ts +19 -0
  59. package/dist/server/src/services/mcp-oauth/oauth-callback-server.d.ts.map +1 -0
  60. package/dist/server/src/services/mcp-oauth/oauth-callback-server.js +100 -0
  61. package/dist/server/src/services/mcp-oauth/oauth-provider.d.ts +42 -0
  62. package/dist/server/src/services/mcp-oauth/oauth-provider.d.ts.map +1 -0
  63. package/dist/server/src/services/mcp-oauth/oauth-provider.js +121 -0
  64. package/dist/server/src/services/mcp-oauth/oauth-token-storage.d.ts +23 -0
  65. package/dist/server/src/services/mcp-oauth/oauth-token-storage.d.ts.map +1 -0
  66. package/dist/server/src/services/mcp-oauth/oauth-token-storage.js +92 -0
  67. package/dist/server/src/services/mcp-oauth/oauth-types.d.ts +21 -0
  68. package/dist/server/src/services/mcp-oauth/oauth-types.d.ts.map +1 -0
  69. package/dist/server/src/services/mcp-oauth/oauth-types.js +4 -0
  70. package/dist/server/src/utils/network-security.d.ts +33 -0
  71. package/dist/server/src/utils/network-security.d.ts.map +1 -0
  72. package/dist/server/src/utils/network-security.js +83 -0
  73. package/dist/server/src/utils/transports/streamable-http-transport.d.ts +12 -1
  74. package/dist/server/src/utils/transports/streamable-http-transport.d.ts.map +1 -1
  75. package/dist/server/src/utils/transports/streamable-http-transport.js +20 -1
  76. package/dist/server/src/utils/transports/transport-factory.d.ts +2 -0
  77. package/dist/server/src/utils/transports/transport-factory.d.ts.map +1 -1
  78. package/dist/server/src/utils/transports/transport-factory.js +17 -2
  79. package/dist/server/src/utils/transports/transport.interface.d.ts +2 -0
  80. package/dist/server/src/utils/transports/transport.interface.d.ts.map +1 -1
  81. package/dist/server/tests/unit/utils/network-security.test.d.ts +2 -0
  82. package/dist/server/tests/unit/utils/network-security.test.d.ts.map +1 -0
  83. package/dist/server/tests/unit/utils/network-security.test.js +123 -0
  84. package/dist/server/vite.config.js +1 -1
  85. package/package.json +111 -111
  86. package/dist/client/assets/HomeView-BnO4yIT9.js +0 -1
  87. package/dist/client/assets/ResourcesView-B5Xg0ynh.js +0 -1
  88. package/dist/client/assets/ServerDashboard-DYAVrrUk.js +0 -1
  89. package/dist/client/assets/ServerDetail-q94ZFfjL.js +0 -2
  90. package/dist/client/assets/SettingsView-BM6P5yrT.js +0 -1
  91. package/dist/client/assets/ToolCallDialog-BoAGxlB5.js +0 -1
  92. package/dist/client/assets/ToolsView-lqFhr7Bk.js +0 -1
  93. package/dist/client/assets/el-input-DkJq57wP.js +0 -1
  94. package/dist/client/assets/el-loading-C3v6a9xV.js +0 -1
  95. package/dist/client/assets/el-radio-group-C9QUL5mm.js +0 -1
  96. package/dist/client/assets/el-skeleton-item-Bbmpc0Xz.js +0 -1
  97. package/dist/client/assets/el-tab-pane-YsYuBcem.js +0 -1
  98. package/dist/client/assets/index-5tzIwwtS.js +0 -1
  99. package/dist/client/assets/index-MqHvQjDP.js +0 -2
  100. package/dist/client/assets/omit-CB4hTeTH.js +0 -1
  101. package/dist/client/assets/typescript-Bp3YSIOJ.js +0 -1
package/CHANGELOG.md CHANGED
@@ -1,640 +1,666 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- ## [1.2.6] - 2026-04-29
6
-
7
- ### Hub Tools
8
-
9
- - use runtime connected status for instance selection
10
- - clarify instance filtering comment
11
- - fix listMcpResources returning incomplete server resources by using two-pass approach to check all instances connection status
12
-
13
- ### Utils
14
-
15
- - add null check to normalizeToolName
16
-
17
- ---
18
-
19
- ## [1.2.5] - 2026-04-28
20
-
21
- ### Hub Tools
22
-
23
- - enhance hub-tools system with improved tool handling
24
- - add list_tags tool constants and update CLAUDE.md docs
25
- - add comprehensive use guide documentation
26
- - improve default server description text
27
- - remove stale cache in listResources
28
- - clarify instance filtering comment
29
- - fix listMcpResources returning incomplete server resources by using two-pass approach to check all instances connection status
30
- - align resource generation logic with /web/mcp/status API behavior
31
-
32
- ### Utils
33
-
34
- - add null check to normalizeToolName
35
-
36
- ---
37
-
38
- ## [1.2.4] - 2026-04-25
39
-
40
- ### Frontend
41
-
42
- - Shorten long server version display with tooltip for full version
43
-
44
- ### Hub Tools
45
-
46
- - Improve error message when attempting to update gateway server
47
-
48
- ### Docs
49
-
50
- - Add "解决痛点" section to Chinese README
51
- - Add LinuxDo topic link to Chinese README
52
-
53
- ---
54
-
55
- ## [1.2.3] - 2026-04-20
56
-
57
- ### CLI
58
-
59
- - Add use-guide command for CLI usage reference
60
- - Add install command for adding new MCP servers
61
- - Remove redundant npm scripts
62
-
63
- ### Gateway
64
-
65
- - Wrap initialize handler debug logs with gatewayDebug condition
66
-
67
- ### Docs
68
-
69
- - Reorganize changelog by functional areas
70
-
71
- ---
72
-
73
- ## [1.2.2] - 2026-04-17
74
-
75
- ### Gateway
76
-
77
- - Add gatewayDebug logging control
78
-
79
- ### Frontend
80
-
81
- - Add time unit types and conversion utilities
82
- - Add Startup configuration tab to Settings page
83
-
84
- ### Config
85
-
86
- - Correct servers sorting in config-loader
87
-
88
- ### Startup
89
-
90
- - Extract ensureServerInstances() to eliminate DRY violation
91
- - Extract startup orchestration logic into dedicated module
92
-
93
- ### Resources
94
-
95
- - Ensure consistent { contents: [...] } format in resource read API
96
-
97
- ### Logging
98
-
99
- - Add STDERR log module for stdio transport
100
-
101
- ### Connection
102
-
103
- - Split connect() into SRP-compliant private methods
104
-
105
- ### Other
106
-
107
- - Update changelog for 2026-04-15 to 2026-04-17
108
- - Add LinuxDo community acknowledgment
109
-
110
- ---
111
-
112
- ## [1.2.0] - 2026-04-14
113
-
114
- ### Core
115
-
116
- - Add normalizeToolName for cross-format tool name matching
117
-
118
- ### CLI
119
-
120
- - Add tool-use command for MCP server tool operations
121
- - Fix CLI entry detection for Windows/npm symlink environments
122
- - Fix command count and rename mcpToolUseCommand to toolUseCommand
123
-
124
- ### Config
125
-
126
- - Change config loading logs from info to debug level
127
-
128
- ### System Tools
129
-
130
- - Rename list_tools_in_server to list_tools
131
-
132
- ### Documentation
133
-
134
- - Complete CLAUDE.md documentation for all submodules
135
- - Update changelog and README for v1.2 release
136
-
137
- ### Utils
138
-
139
- - Add unit tests for normalizeToolName function
140
-
141
- ---
142
-
143
- ## [1.1.1] - 2026-04-14
144
-
145
- ### Gateway
146
-
147
- - Implement per-request transport mode to fix connection errors
148
-
149
- ### Frontend
150
-
151
- - Prevent runtime error when tool is undefined in groupedTools
152
-
153
- ---
154
-
155
- ## [1.1.0] - 2026-04-13
156
-
157
- ### Resources
158
-
159
- - Implement MCP native resource forwarding
160
-
161
- ### Gateway
162
-
163
- - Restrict call_tool from invoking system tools
164
- - Return 400 for missing Accept header
165
- - Extract version and protocol version to shared utility
166
- - Only include tools from servers with allowedTools configured
167
-
168
- ### Security
169
-
170
- - Mask sensitive values in config change logs
171
-
172
- ### Config
173
-
174
- - Sort env and headers keys on config save
175
- - Implement v1.1 instance configuration system
176
- - Enhance instance management with display name and route selection
177
- - Add empty value cleaning when saving config
178
- - Add index and displayName to ServerInstanceConfig with reassignment API
179
- - Add v1.1 config schema with auto-migration support
180
- - Move instance selection strategy to template
181
- - Complete v1.1 multi-instance configuration refactoring
182
- - Activate v1.1 config format with instance support
183
- - Activate v1.1 config format, remove v1.0 compatibility code
184
- - Ensure server instance indexes from config load and migration
185
- - Support string index type for server instance operations
186
- - Unify instance ID generation with content hash
187
-
188
- ### Proxy
189
-
190
- - Add proxy configuration support for SSE and Streamable HTTP transports
191
-
192
- ### Transport
193
-
194
- - Add LineBuffer for proper stderr line buffering
195
- - Use official SDK StdioClientTransport
196
- - Log non-JSON-RPC stdout and unify stderr log level
197
-
198
- ### Frontend
199
-
200
- - Add instance tab routing synchronization
201
- - Fix tools and resources not displaying in server detail
202
- - Add description field to ConfigTemplateForm
203
- - Improve instance status reactivity and management
204
- - Add bottom padding to prevent save button cutoff on scroll
205
- - Fix TypeScript type errors in component event handlers
206
- - Ensure log viewer area fills available container height
207
- - Optimize instance list display in English and hide redundant Running tag
208
- - Correct dark mode background color and refine instance UI
209
- - Improve type declarations and test type safety
210
- - Compute instance counts from server.instances directly
211
-
212
- ### UI Components
213
-
214
- - Add server instance management UI components
215
- - Add tag management UI with TagManager component
216
- - Add description field support in AddServerModal
217
- - Update resource detail and list views with hub tools integration
218
-
219
- ### i18n
220
-
221
- - Improve noToolsFound message to reflect tool aggregation
222
- - Correct missing translation key in InstanceConfig component
223
- - Fix headers label and add button text in server config
224
-
225
- ### Session
226
-
227
- - Remove cwd and project fields from session management
228
- - Remove session persistence mechanism and use SDK native stateless mode
229
- - Remove session persistence mechanism
230
-
231
- ### System Tools
232
-
233
- - Implement instance selection strategies
234
- - Add update_server_description system tool
235
- - Support both toolArgs and arguments for backward compatibility
236
- - Add MCP_HUB_LITE_SERVER handling to getTool
237
- - listServers only returns connected servers
238
- - Restructure core hub tools service architecture
239
- - Enhance system tools handling and API endpoints
240
- - Add non-strict mode to selectBestInstance
241
- - Optimize hub tools service and API
242
- - Simplify system tools API and improve type safety
243
-
244
- ### MCP Status
245
-
246
- - Prevent automatic enabled field updates on connect/disconnect
247
-
248
- ### Connection
249
-
250
- - Improve serverId handling and protocol version support
251
-
252
- ### Search
253
-
254
- - Remove complex search module, simplify to string matching
255
- - Simplify search logic using server-level caching
256
-
257
- ### Tests
258
-
259
- - Remove evaluation tests not compliant with MCP spec
260
-
261
- ### Core
262
-
263
- - Use composite key serverName-serverIndex instead of serverId
264
-
265
- ### Documentation
266
-
267
- - Update search functionality description
268
- - Update CLAUDE.md documentation for logging and composables
269
- - Update CLAUDE.md documentation for v1.1 config refactor
270
- - Update CLAUDE.md files to reflect session removal
271
- - Update CLAUDE.md files across project modules
272
- - Update CLAUDE.md files to reflect recent v1.1 config changes
273
- - Update CLAUDE.md files with format improvements and new content
274
-
275
- ### Use Guide
276
-
277
- - Compress use-guide from 13 to 7 sections
278
-
279
- ### Tools
280
-
281
- - Handle nested toolArgs in updateServerDescription
282
- - Simplify ServerStatusTags tests with mocks
283
- - Optimize updateServerInstance logging
284
-
285
- ### Lint
286
-
287
- - Add fallback for missing .eslintrc-auto-import.json
288
-
289
- ### Status
290
-
291
- - Show all configured servers including disabled ones in status
292
-
293
- ---
294
-
295
- ## [1.0.2] - 2026-03-15
296
-
297
- ### Session
298
-
299
- - Add capabilities support in session manager
300
- - Add capabilities field to session model
301
- - Simplify sessionId generation
302
-
303
- ### Gateway
304
-
305
- - Add initialized notification and capabilities handling
306
- - Clean up deprecated methods and update tool cache access
307
- - Enable initialized notification test
308
-
309
- ### Client
310
-
311
- - Add capabilities and project inference
312
-
313
- ### UI
314
-
315
- - Add capabilities display in SessionsView
316
- - Correct serverName prop in ServerDetail for ToolCallDialog
317
-
318
- ### System Tools
319
-
320
- - Simplify dynamic resources list to only server metadata
321
-
322
- ### Core
323
-
324
- - Update core modules for session and client migration
325
-
326
- ### Client Tracking
327
-
328
- - Remove deprecated client tracking and stores
329
-
330
- ### Session Migration
331
-
332
- - Migrate from mcp-session-manager to session-tracker service
333
-
334
- ### API
335
-
336
- - Make MCP communication debug logging conditional
337
-
338
- ---
339
-
340
- ## [1.0.1] - 2026-03-15
341
-
342
- ### UI
343
-
344
- - Fix environment variable value input display
345
-
346
- ### System Tools
347
-
348
- - Resolve system tool call validation errors
349
-
350
- ---
351
-
352
- ## [1.0.0] - 2026-03-15
353
-
354
- ### UI
355
-
356
- - Improve dashboard and server status tags
357
- - Improve settings page UI and dev mode handling
358
- - Add new logging configuration options to settings
359
- - Improve resources view with table layout
360
- - Improve tool call dialog and system tools display
361
- - Enhance server card and interaction
362
- - Enhance tool call dialog with i18n and response display
363
- - Add server status tags component with i18n support
364
- - Update App.vue with new layout structure
365
-
366
- ### CLI
367
-
368
- - Enhance status command with formatted output
369
- - Add comprehensive unit tests for CLI commands
370
- - Ensure CLI commands exit properly after execution
371
- - Fix server startup and log ANSI color issues
372
-
373
- ### Logging
374
-
375
- - Enhance log storage integration for stdio transports
376
- - Filter binary image data in MCP response logs
377
- - Enhance JSON pretty printing with newline processing
378
- - Improve MCP gateway logging
379
- - Unify dev mode detection and remove devLogFile config
380
- - Unify logging configuration system
381
- - Extract and unify MCP notification message handling
382
- - Use MCP_COMM_DEBUG env var to control communication logs
383
- - Change log file naming to timestamp-based format
384
- - Add missing subModule context to log statements
385
- - Split monolithic logger into modular structure
386
- - Enhance SSE stream management and response logging
387
- - Extract common log method to eliminate code duplication
388
- - Optimize logging verbosity
389
- - Optimize logger options extraction
390
- - Optimize getTools/getResources logging with cache hit indicators and resource cache improvement
391
- - Improve stderr log level detection logic
392
- - Use getMcpCommDebugSetting() in connection-manager
393
- - Use stringifyForLogging for gateway headers and improve rawHeaders readability
394
- - Enhance development server logging and hot reload
395
- - Organize file structure and enhance logging
396
- - Optimize logging for tools/list responses
397
- - Update documentation for config path and logging
398
-
399
- ### Config
400
-
401
- - Extend config schema with new logging options
402
- - Add configurable session timeout for MCP gateway
403
- - Simplify config-manager implementation
404
- - Use default config on validation failure
405
- - Prevent auto-creation of config file and add error logging
406
- - Add immediate save option to updateConfig method
407
- - Optimize backup system with caching and compilation phase handling
408
- - Optimize backup logic and implement lazy initialization
409
- - Skip backup creation for default config
410
- - Remove delayed save mechanism
411
- - Correct config path
412
-
413
- ### Session
414
-
415
- - Count expired sessions and use config flush interval
416
- - Skip expired sessions during restore
417
- - Enhance sessionId extraction with header support and improved fallback logic
418
- - Enhance session persistence and cleanup logic
419
- - Enhance session management with consistency checks and request header handling
420
- - Implement comprehensive session persistence and management
421
- - Implement session persistence and configuration management
422
- - Simplify session matching logic
423
- - Extract session manager into modular structure
424
-
425
- ### SSE
426
-
427
- - Add connection timeout config and reconnection detection
428
- - Remove SSE connection timestamp tracking
429
- - Improve type handling and SSE logging
430
-
431
- ### Type System
432
-
433
- - Add type safety for JsonSchema in frontend ToolsView
434
- - Comprehensive eslint no-explicit-any fixes and type safety improvements
435
- - Establish shared type system for frontend-backend integration
436
-
437
- ### System Tools
438
-
439
- - Introduce unified system tool handler and prefixed tool name support
440
- - Implement system tools framework with centralized constants
441
-
442
- ### Documentation
443
-
444
- - Enhance documentation and system configuration
445
- - Add server description field and resource detail improvements
446
- - Update project documentation and configuration
447
-
448
- ### Request Headers
449
-
450
- - Add rawHeaders manipulation for session header propagation
451
-
452
- ### Tools
453
-
454
- - Add serverName field to tool model and implement server-level caching
455
-
456
- ### Observability
457
-
458
- - Enhance OpenTelemetry integration and logging system
459
- - Add OpenTelemetry tracing support
460
- - Simplify tracing exporters to console and OTLP only
461
- - Remove OpenTelemetry and telemetry functionality
462
-
463
- ### Logger
464
-
465
- - Add subModule support to logger and update WebSocket logs
466
- - Add LOG_MODULES context and update hub-manager service tests
467
-
468
- ### Search
469
-
470
- - Implement simple search service for basic tool discovery
471
- - Enhance tool call dialog and tools view with search integration
472
- - Implement comprehensive search functionality across MCP servers
473
-
474
- ### WebSocket
475
-
476
- - Add server update event listeners
477
-
478
- ### Tool Views
479
-
480
- - Enhance tools view with serverName-based grouping
481
- - Enhance tool call dialog and tools view with search integration
482
-
483
- ### Batch Operations
484
-
485
- - Optimize batch import with single save and concurrent startup
486
-
487
- ### Services
488
-
489
- - Add hub manager and search core services
490
-
491
- ### API
492
-
493
- - Enhance MCP gateway and web API endpoints
494
-
495
- ### Client Tracking
496
-
497
- - Enhance client tracking and connection management
498
-
499
- ### Frontend Store
500
-
501
- - Add tool calls store and websocket utilities
502
-
503
- ### Client
504
-
505
- - Add client version display
506
- - Add manual save button to server list
507
- - Add client management functionality
508
-
509
- ### i18n
510
-
511
- - Add multi-language support and update UI components
512
- - Add internationalization support for server management actions
513
-
514
- ### Server Management
515
-
516
- - Enhance system configuration management and server management functionality
517
- - Enhance server management functionality, add timeout and auto-start configurations
518
- - Optimize server detail page status display and uptime calculation
519
-
520
- ### Tool Management
521
-
522
- - Implement comprehensive tool search and management system
523
-
524
- ### Tool Gateway
525
-
526
- - Implement Tools Gateway and refactor navigation
527
-
528
- ### MCP Server
529
-
530
- - Add server auto-start configuration and refactor MCP gateway transport
531
- - Add server version information display functionality
532
- - Implement MCP Server log page to display complete logs
533
- - Add server config timeout setting functionality
534
- - Refactor MCP connection management and transport layer, add resource model support
535
- - Fix auto-start not working and sidebar display issues
536
-
537
- ### Resources
538
-
539
- - Display tool and resource counts in tabs
540
- - Add MCP resources support with UI and API endpoints
541
-
542
- ### Transport
543
-
544
- - Add Streamable HTTP transport support for Microsoft Learn MCP Server
545
-
546
- ### Frontend Tools
547
-
548
- - Add remote server support and HTTP utilities
549
- - Save development progress with UI enhancements and new components
550
- - Complete frontend architecture refactoring and implement new UI components
551
- - Use shared types in frontend code
552
- - Enhance path alias system with module-specific aliases
553
- - Rename dashboard and header components to view suffix
554
- - Frontend code cleanup and improvements
555
- - Enhance type safety in gateway and hub tools services
556
-
557
- ### Implementation Milestones
558
-
559
- - Complete MCP Hub Lite implementation with multi-server support
560
- - Simplify architecture and enhance CLI status command
561
- - Enhance CLI, add i18n, update config & cleanup
562
- - Implement pid management and stop/restart commands
563
- - Implement cli commands (start, list, status, ui)
564
- - Implement fault tolerance and health checks
565
- - Implement mcp streaming gateway with stdio support
566
- - Implement mcp connection and tool search
567
- - Complete phase 3 server management implementation
568
- - Complete Phase 1 & 2 (infrastructure, models, config)
569
-
570
- ### Tests
571
-
572
- - Resolve config manager intermittent test failure
573
- - Prevent test pollution by implementing lazy initialization for ConfigManager
574
- - Resolve TypeScript type errors in unit tests
575
- - Fix runner.test.ts missing logger.setLevel method and system.logging mock config
576
- - Update all tests to include serverName field
577
- - Add comprehensive utility unit tests
578
- - Add comprehensive server runner unit tests
579
- - Add comprehensive frontend and backend test infrastructure
580
- - Fix lint:log command and ESLint configuration
581
- - Add evaluation test files
582
-
583
- ### Element Plus
584
-
585
- - Implement Element Plus auto-import
586
-
587
- ### Imports
588
-
589
- - Replace relative imports with path aliases
590
-
591
- ### Vitest
592
-
593
- - Add temp directory to test coverage paths
594
- - Exclude frontend unit tests from main tsconfig
595
-
596
- ### Images
597
-
598
- - Remove unused image
599
-
600
- ### Index
601
-
602
- - Update project index and fix documentation typos
603
- - Update project AI context documentation
604
-
605
- ### Debugging
606
-
607
- - Remove duplicate debug logs in gateway
608
- - Fix ESM imports and optimize CLI startup performance
609
- - Resolve config-logger circular dependency using config getter pattern
610
-
611
- ### Bug Fixes
612
-
613
- - Fix el-input-number width issue in SettingsView
614
- - Add missing uri field in ReadMcpResourceTool response
615
- - Correct serverName usage in tool call dialog
616
- - Correct variable declaration in applyFilters
617
- - Correct config path in SettingsView computed properties
618
- - Ensure allowedTools is initialized as empty array for new servers
619
- - Fix tool aggregation toggle logic in frontend
620
- - Fix log loading issues in Dashboard and ServerDetail
621
- - Fix two issues with server deletion functionality
622
- - Fix CLI commands hanging after execution
623
- - Add missing PidManager import in index.ts
624
- - Fix missing imports in app.ts
625
-
626
- ### Backend
627
-
628
- - Use shared types in backend code
629
-
630
- ### Architecture
631
-
632
- - Establish shared type system for frontend-backend integration
633
-
634
- ### Type Safety
635
-
636
- - Improve system tools type safety and naming
637
- - Optimize configuration and logging system
638
- - Enhance test coverage and SDK helpers
639
- - Improve configuration and telemetry
640
- - Optimize connection management logic
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## [1.2.8] - 2026-05-09
6
+
7
+ ### Gateway
8
+
9
+ - prevent concurrent request counter drift from SSE timeout causing 503 for new clients
10
+ - add GET /health/connections diagnostic endpoint for connection stats
11
+
12
+ ## [1.2.7] - 2026-05-09
13
+
14
+ ### Gateway
15
+
16
+ - add OAuth browser authentication for Streamable HTTP servers
17
+ - complete SERVER*INSTANCE*\* event pipeline with granular local WebSocket updates
18
+
19
+ ### Security
20
+
21
+ - enforce allowedNetworks, connection limits, and timeout at runtime
22
+
23
+ ### Core
24
+
25
+ - auto-increment port when occupied in dev mode
26
+ - improve MCP server startup failure log visibility
27
+ - remove dead code and unused types
28
+
29
+ ---
30
+
31
+ ## [1.2.6] - 2026-04-29
32
+
33
+ ### Hub Tools
34
+
35
+ - use runtime connected status for instance selection
36
+ - clarify instance filtering comment
37
+ - fix listMcpResources returning incomplete server resources by using two-pass approach to check all instances connection status
38
+
39
+ ### Utils
40
+
41
+ - add null check to normalizeToolName
42
+
43
+ ---
44
+
45
+ ## [1.2.5] - 2026-04-28
46
+
47
+ ### Hub Tools
48
+
49
+ - enhance hub-tools system with improved tool handling
50
+ - add list_tags tool constants and update CLAUDE.md docs
51
+ - add comprehensive use guide documentation
52
+ - improve default server description text
53
+ - remove stale cache in listResources
54
+ - clarify instance filtering comment
55
+ - fix listMcpResources returning incomplete server resources by using two-pass approach to check all instances connection status
56
+ - align resource generation logic with /web/mcp/status API behavior
57
+
58
+ ### Utils
59
+
60
+ - add null check to normalizeToolName
61
+
62
+ ---
63
+
64
+ ## [1.2.4] - 2026-04-25
65
+
66
+ ### Frontend
67
+
68
+ - Shorten long server version display with tooltip for full version
69
+
70
+ ### Hub Tools
71
+
72
+ - Improve error message when attempting to update gateway server
73
+
74
+ ### Docs
75
+
76
+ - Add "解决痛点" section to Chinese README
77
+ - Add LinuxDo topic link to Chinese README
78
+
79
+ ---
80
+
81
+ ## [1.2.3] - 2026-04-20
82
+
83
+ ### CLI
84
+
85
+ - Add use-guide command for CLI usage reference
86
+ - Add install command for adding new MCP servers
87
+ - Remove redundant npm scripts
88
+
89
+ ### Gateway
90
+
91
+ - Wrap initialize handler debug logs with gatewayDebug condition
92
+
93
+ ### Docs
94
+
95
+ - Reorganize changelog by functional areas
96
+
97
+ ---
98
+
99
+ ## [1.2.2] - 2026-04-17
100
+
101
+ ### Gateway
102
+
103
+ - Add gatewayDebug logging control
104
+
105
+ ### Frontend
106
+
107
+ - Add time unit types and conversion utilities
108
+ - Add Startup configuration tab to Settings page
109
+
110
+ ### Config
111
+
112
+ - Correct servers sorting in config-loader
113
+
114
+ ### Startup
115
+
116
+ - Extract ensureServerInstances() to eliminate DRY violation
117
+ - Extract startup orchestration logic into dedicated module
118
+
119
+ ### Resources
120
+
121
+ - Ensure consistent { contents: [...] } format in resource read API
122
+
123
+ ### Logging
124
+
125
+ - Add STDERR log module for stdio transport
126
+
127
+ ### Connection
128
+
129
+ - Split connect() into SRP-compliant private methods
130
+
131
+ ### Other
132
+
133
+ - Update changelog for 2026-04-15 to 2026-04-17
134
+ - Add LinuxDo community acknowledgment
135
+
136
+ ---
137
+
138
+ ## [1.2.0] - 2026-04-14
139
+
140
+ ### Core
141
+
142
+ - Add normalizeToolName for cross-format tool name matching
143
+
144
+ ### CLI
145
+
146
+ - Add tool-use command for MCP server tool operations
147
+ - Fix CLI entry detection for Windows/npm symlink environments
148
+ - Fix command count and rename mcpToolUseCommand to toolUseCommand
149
+
150
+ ### Config
151
+
152
+ - Change config loading logs from info to debug level
153
+
154
+ ### System Tools
155
+
156
+ - Rename list_tools_in_server to list_tools
157
+
158
+ ### Documentation
159
+
160
+ - Complete CLAUDE.md documentation for all submodules
161
+ - Update changelog and README for v1.2 release
162
+
163
+ ### Utils
164
+
165
+ - Add unit tests for normalizeToolName function
166
+
167
+ ---
168
+
169
+ ## [1.1.1] - 2026-04-14
170
+
171
+ ### Gateway
172
+
173
+ - Implement per-request transport mode to fix connection errors
174
+
175
+ ### Frontend
176
+
177
+ - Prevent runtime error when tool is undefined in groupedTools
178
+
179
+ ---
180
+
181
+ ## [1.1.0] - 2026-04-13
182
+
183
+ ### Resources
184
+
185
+ - Implement MCP native resource forwarding
186
+
187
+ ### Gateway
188
+
189
+ - Restrict call_tool from invoking system tools
190
+ - Return 400 for missing Accept header
191
+ - Extract version and protocol version to shared utility
192
+ - Only include tools from servers with allowedTools configured
193
+
194
+ ### Security
195
+
196
+ - Mask sensitive values in config change logs
197
+
198
+ ### Config
199
+
200
+ - Sort env and headers keys on config save
201
+ - Implement v1.1 instance configuration system
202
+ - Enhance instance management with display name and route selection
203
+ - Add empty value cleaning when saving config
204
+ - Add index and displayName to ServerInstanceConfig with reassignment API
205
+ - Add v1.1 config schema with auto-migration support
206
+ - Move instance selection strategy to template
207
+ - Complete v1.1 multi-instance configuration refactoring
208
+ - Activate v1.1 config format with instance support
209
+ - Activate v1.1 config format, remove v1.0 compatibility code
210
+ - Ensure server instance indexes from config load and migration
211
+ - Support string index type for server instance operations
212
+ - Unify instance ID generation with content hash
213
+
214
+ ### Proxy
215
+
216
+ - Add proxy configuration support for SSE and Streamable HTTP transports
217
+
218
+ ### Transport
219
+
220
+ - Add LineBuffer for proper stderr line buffering
221
+ - Use official SDK StdioClientTransport
222
+ - Log non-JSON-RPC stdout and unify stderr log level
223
+
224
+ ### Frontend
225
+
226
+ - Add instance tab routing synchronization
227
+ - Fix tools and resources not displaying in server detail
228
+ - Add description field to ConfigTemplateForm
229
+ - Improve instance status reactivity and management
230
+ - Add bottom padding to prevent save button cutoff on scroll
231
+ - Fix TypeScript type errors in component event handlers
232
+ - Ensure log viewer area fills available container height
233
+ - Optimize instance list display in English and hide redundant Running tag
234
+ - Correct dark mode background color and refine instance UI
235
+ - Improve type declarations and test type safety
236
+ - Compute instance counts from server.instances directly
237
+
238
+ ### UI Components
239
+
240
+ - Add server instance management UI components
241
+ - Add tag management UI with TagManager component
242
+ - Add description field support in AddServerModal
243
+ - Update resource detail and list views with hub tools integration
244
+
245
+ ### i18n
246
+
247
+ - Improve noToolsFound message to reflect tool aggregation
248
+ - Correct missing translation key in InstanceConfig component
249
+ - Fix headers label and add button text in server config
250
+
251
+ ### Session
252
+
253
+ - Remove cwd and project fields from session management
254
+ - Remove session persistence mechanism and use SDK native stateless mode
255
+ - Remove session persistence mechanism
256
+
257
+ ### System Tools
258
+
259
+ - Implement instance selection strategies
260
+ - Add update_server_description system tool
261
+ - Support both toolArgs and arguments for backward compatibility
262
+ - Add MCP_HUB_LITE_SERVER handling to getTool
263
+ - listServers only returns connected servers
264
+ - Restructure core hub tools service architecture
265
+ - Enhance system tools handling and API endpoints
266
+ - Add non-strict mode to selectBestInstance
267
+ - Optimize hub tools service and API
268
+ - Simplify system tools API and improve type safety
269
+
270
+ ### MCP Status
271
+
272
+ - Prevent automatic enabled field updates on connect/disconnect
273
+
274
+ ### Connection
275
+
276
+ - Improve serverId handling and protocol version support
277
+
278
+ ### Search
279
+
280
+ - Remove complex search module, simplify to string matching
281
+ - Simplify search logic using server-level caching
282
+
283
+ ### Tests
284
+
285
+ - Remove evaluation tests not compliant with MCP spec
286
+
287
+ ### Core
288
+
289
+ - Use composite key serverName-serverIndex instead of serverId
290
+
291
+ ### Documentation
292
+
293
+ - Update search functionality description
294
+ - Update CLAUDE.md documentation for logging and composables
295
+ - Update CLAUDE.md documentation for v1.1 config refactor
296
+ - Update CLAUDE.md files to reflect session removal
297
+ - Update CLAUDE.md files across project modules
298
+ - Update CLAUDE.md files to reflect recent v1.1 config changes
299
+ - Update CLAUDE.md files with format improvements and new content
300
+
301
+ ### Use Guide
302
+
303
+ - Compress use-guide from 13 to 7 sections
304
+
305
+ ### Tools
306
+
307
+ - Handle nested toolArgs in updateServerDescription
308
+ - Simplify ServerStatusTags tests with mocks
309
+ - Optimize updateServerInstance logging
310
+
311
+ ### Lint
312
+
313
+ - Add fallback for missing .eslintrc-auto-import.json
314
+
315
+ ### Status
316
+
317
+ - Show all configured servers including disabled ones in status
318
+
319
+ ---
320
+
321
+ ## [1.0.2] - 2026-03-15
322
+
323
+ ### Session
324
+
325
+ - Add capabilities support in session manager
326
+ - Add capabilities field to session model
327
+ - Simplify sessionId generation
328
+
329
+ ### Gateway
330
+
331
+ - Add initialized notification and capabilities handling
332
+ - Clean up deprecated methods and update tool cache access
333
+ - Enable initialized notification test
334
+
335
+ ### Client
336
+
337
+ - Add capabilities and project inference
338
+
339
+ ### UI
340
+
341
+ - Add capabilities display in SessionsView
342
+ - Correct serverName prop in ServerDetail for ToolCallDialog
343
+
344
+ ### System Tools
345
+
346
+ - Simplify dynamic resources list to only server metadata
347
+
348
+ ### Core
349
+
350
+ - Update core modules for session and client migration
351
+
352
+ ### Client Tracking
353
+
354
+ - Remove deprecated client tracking and stores
355
+
356
+ ### Session Migration
357
+
358
+ - Migrate from mcp-session-manager to session-tracker service
359
+
360
+ ### API
361
+
362
+ - Make MCP communication debug logging conditional
363
+
364
+ ---
365
+
366
+ ## [1.0.1] - 2026-03-15
367
+
368
+ ### UI
369
+
370
+ - Fix environment variable value input display
371
+
372
+ ### System Tools
373
+
374
+ - Resolve system tool call validation errors
375
+
376
+ ---
377
+
378
+ ## [1.0.0] - 2026-03-15
379
+
380
+ ### UI
381
+
382
+ - Improve dashboard and server status tags
383
+ - Improve settings page UI and dev mode handling
384
+ - Add new logging configuration options to settings
385
+ - Improve resources view with table layout
386
+ - Improve tool call dialog and system tools display
387
+ - Enhance server card and interaction
388
+ - Enhance tool call dialog with i18n and response display
389
+ - Add server status tags component with i18n support
390
+ - Update App.vue with new layout structure
391
+
392
+ ### CLI
393
+
394
+ - Enhance status command with formatted output
395
+ - Add comprehensive unit tests for CLI commands
396
+ - Ensure CLI commands exit properly after execution
397
+ - Fix server startup and log ANSI color issues
398
+
399
+ ### Logging
400
+
401
+ - Enhance log storage integration for stdio transports
402
+ - Filter binary image data in MCP response logs
403
+ - Enhance JSON pretty printing with newline processing
404
+ - Improve MCP gateway logging
405
+ - Unify dev mode detection and remove devLogFile config
406
+ - Unify logging configuration system
407
+ - Extract and unify MCP notification message handling
408
+ - Use MCP_COMM_DEBUG env var to control communication logs
409
+ - Change log file naming to timestamp-based format
410
+ - Add missing subModule context to log statements
411
+ - Split monolithic logger into modular structure
412
+ - Enhance SSE stream management and response logging
413
+ - Extract common log method to eliminate code duplication
414
+ - Optimize logging verbosity
415
+ - Optimize logger options extraction
416
+ - Optimize getTools/getResources logging with cache hit indicators and resource cache improvement
417
+ - Improve stderr log level detection logic
418
+ - Use getMcpCommDebugSetting() in connection-manager
419
+ - Use stringifyForLogging for gateway headers and improve rawHeaders readability
420
+ - Enhance development server logging and hot reload
421
+ - Organize file structure and enhance logging
422
+ - Optimize logging for tools/list responses
423
+ - Update documentation for config path and logging
424
+
425
+ ### Config
426
+
427
+ - Extend config schema with new logging options
428
+ - Add configurable session timeout for MCP gateway
429
+ - Simplify config-manager implementation
430
+ - Use default config on validation failure
431
+ - Prevent auto-creation of config file and add error logging
432
+ - Add immediate save option to updateConfig method
433
+ - Optimize backup system with caching and compilation phase handling
434
+ - Optimize backup logic and implement lazy initialization
435
+ - Skip backup creation for default config
436
+ - Remove delayed save mechanism
437
+ - Correct config path
438
+
439
+ ### Session
440
+
441
+ - Count expired sessions and use config flush interval
442
+ - Skip expired sessions during restore
443
+ - Enhance sessionId extraction with header support and improved fallback logic
444
+ - Enhance session persistence and cleanup logic
445
+ - Enhance session management with consistency checks and request header handling
446
+ - Implement comprehensive session persistence and management
447
+ - Implement session persistence and configuration management
448
+ - Simplify session matching logic
449
+ - Extract session manager into modular structure
450
+
451
+ ### SSE
452
+
453
+ - Add connection timeout config and reconnection detection
454
+ - Remove SSE connection timestamp tracking
455
+ - Improve type handling and SSE logging
456
+
457
+ ### Type System
458
+
459
+ - Add type safety for JsonSchema in frontend ToolsView
460
+ - Comprehensive eslint no-explicit-any fixes and type safety improvements
461
+ - Establish shared type system for frontend-backend integration
462
+
463
+ ### System Tools
464
+
465
+ - Introduce unified system tool handler and prefixed tool name support
466
+ - Implement system tools framework with centralized constants
467
+
468
+ ### Documentation
469
+
470
+ - Enhance documentation and system configuration
471
+ - Add server description field and resource detail improvements
472
+ - Update project documentation and configuration
473
+
474
+ ### Request Headers
475
+
476
+ - Add rawHeaders manipulation for session header propagation
477
+
478
+ ### Tools
479
+
480
+ - Add serverName field to tool model and implement server-level caching
481
+
482
+ ### Observability
483
+
484
+ - Enhance OpenTelemetry integration and logging system
485
+ - Add OpenTelemetry tracing support
486
+ - Simplify tracing exporters to console and OTLP only
487
+ - Remove OpenTelemetry and telemetry functionality
488
+
489
+ ### Logger
490
+
491
+ - Add subModule support to logger and update WebSocket logs
492
+ - Add LOG_MODULES context and update hub-manager service tests
493
+
494
+ ### Search
495
+
496
+ - Implement simple search service for basic tool discovery
497
+ - Enhance tool call dialog and tools view with search integration
498
+ - Implement comprehensive search functionality across MCP servers
499
+
500
+ ### WebSocket
501
+
502
+ - Add server update event listeners
503
+
504
+ ### Tool Views
505
+
506
+ - Enhance tools view with serverName-based grouping
507
+ - Enhance tool call dialog and tools view with search integration
508
+
509
+ ### Batch Operations
510
+
511
+ - Optimize batch import with single save and concurrent startup
512
+
513
+ ### Services
514
+
515
+ - Add hub manager and search core services
516
+
517
+ ### API
518
+
519
+ - Enhance MCP gateway and web API endpoints
520
+
521
+ ### Client Tracking
522
+
523
+ - Enhance client tracking and connection management
524
+
525
+ ### Frontend Store
526
+
527
+ - Add tool calls store and websocket utilities
528
+
529
+ ### Client
530
+
531
+ - Add client version display
532
+ - Add manual save button to server list
533
+ - Add client management functionality
534
+
535
+ ### i18n
536
+
537
+ - Add multi-language support and update UI components
538
+ - Add internationalization support for server management actions
539
+
540
+ ### Server Management
541
+
542
+ - Enhance system configuration management and server management functionality
543
+ - Enhance server management functionality, add timeout and auto-start configurations
544
+ - Optimize server detail page status display and uptime calculation
545
+
546
+ ### Tool Management
547
+
548
+ - Implement comprehensive tool search and management system
549
+
550
+ ### Tool Gateway
551
+
552
+ - Implement Tools Gateway and refactor navigation
553
+
554
+ ### MCP Server
555
+
556
+ - Add server auto-start configuration and refactor MCP gateway transport
557
+ - Add server version information display functionality
558
+ - Implement MCP Server log page to display complete logs
559
+ - Add server config timeout setting functionality
560
+ - Refactor MCP connection management and transport layer, add resource model support
561
+ - Fix auto-start not working and sidebar display issues
562
+
563
+ ### Resources
564
+
565
+ - Display tool and resource counts in tabs
566
+ - Add MCP resources support with UI and API endpoints
567
+
568
+ ### Transport
569
+
570
+ - Add Streamable HTTP transport support for Microsoft Learn MCP Server
571
+
572
+ ### Frontend Tools
573
+
574
+ - Add remote server support and HTTP utilities
575
+ - Save development progress with UI enhancements and new components
576
+ - Complete frontend architecture refactoring and implement new UI components
577
+ - Use shared types in frontend code
578
+ - Enhance path alias system with module-specific aliases
579
+ - Rename dashboard and header components to view suffix
580
+ - Frontend code cleanup and improvements
581
+ - Enhance type safety in gateway and hub tools services
582
+
583
+ ### Implementation Milestones
584
+
585
+ - Complete MCP Hub Lite implementation with multi-server support
586
+ - Simplify architecture and enhance CLI status command
587
+ - Enhance CLI, add i18n, update config & cleanup
588
+ - Implement pid management and stop/restart commands
589
+ - Implement cli commands (start, list, status, ui)
590
+ - Implement fault tolerance and health checks
591
+ - Implement mcp streaming gateway with stdio support
592
+ - Implement mcp connection and tool search
593
+ - Complete phase 3 server management implementation
594
+ - Complete Phase 1 & 2 (infrastructure, models, config)
595
+
596
+ ### Tests
597
+
598
+ - Resolve config manager intermittent test failure
599
+ - Prevent test pollution by implementing lazy initialization for ConfigManager
600
+ - Resolve TypeScript type errors in unit tests
601
+ - Fix runner.test.ts missing logger.setLevel method and system.logging mock config
602
+ - Update all tests to include serverName field
603
+ - Add comprehensive utility unit tests
604
+ - Add comprehensive server runner unit tests
605
+ - Add comprehensive frontend and backend test infrastructure
606
+ - Fix lint:log command and ESLint configuration
607
+ - Add evaluation test files
608
+
609
+ ### Element Plus
610
+
611
+ - Implement Element Plus auto-import
612
+
613
+ ### Imports
614
+
615
+ - Replace relative imports with path aliases
616
+
617
+ ### Vitest
618
+
619
+ - Add temp directory to test coverage paths
620
+ - Exclude frontend unit tests from main tsconfig
621
+
622
+ ### Images
623
+
624
+ - Remove unused image
625
+
626
+ ### Index
627
+
628
+ - Update project index and fix documentation typos
629
+ - Update project AI context documentation
630
+
631
+ ### Debugging
632
+
633
+ - Remove duplicate debug logs in gateway
634
+ - Fix ESM imports and optimize CLI startup performance
635
+ - Resolve config-logger circular dependency using config getter pattern
636
+
637
+ ### Bug Fixes
638
+
639
+ - Fix el-input-number width issue in SettingsView
640
+ - Add missing uri field in ReadMcpResourceTool response
641
+ - Correct serverName usage in tool call dialog
642
+ - Correct variable declaration in applyFilters
643
+ - Correct config path in SettingsView computed properties
644
+ - Ensure allowedTools is initialized as empty array for new servers
645
+ - Fix tool aggregation toggle logic in frontend
646
+ - Fix log loading issues in Dashboard and ServerDetail
647
+ - Fix two issues with server deletion functionality
648
+ - Fix CLI commands hanging after execution
649
+ - Add missing PidManager import in index.ts
650
+ - Fix missing imports in app.ts
651
+
652
+ ### Backend
653
+
654
+ - Use shared types in backend code
655
+
656
+ ### Architecture
657
+
658
+ - Establish shared type system for frontend-backend integration
659
+
660
+ ### Type Safety
661
+
662
+ - Improve system tools type safety and naming
663
+ - Optimize configuration and logging system
664
+ - Enhance test coverage and SDK helpers
665
+ - Improve configuration and telemetry
666
+ - Optimize connection management logic