@loop_ouroboros/mcp-hub-lite 1.2.6 → 1.2.7

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