mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-21 21:50:49 +02:00

* feat: MCP Connection management overhaul - Making MCPManager manageable Refactor the monolithic MCPManager into focused, single-responsibility classes: • MCPServersRegistry: Server configuration discovery and metadata management • UserConnectionManager: Manages user-level connections • ConnectionsRepository: Low-level connection pool with lazy loading • MCPConnectionFactory: Handles MCP connection creation with OAuth support New Features: • Lazy loading of app-level connections for horizontal scaling • Automatic reconnection for app-level connections • Enhanced OAuth detection with explicit requiresOAuth flag • Centralized MCP configuration management Bug Fixes: • App-level connection detection in MCPManager.callTool • MCP Connection Reinitialization route behavior Optimizations: • MCPConnection.isConnected() caching to reduce overhead • Concurrent server metadata retrieval instead of sequential This refactoring addresses scalability bottlenecks and improves reliability while maintaining backward compatibility with existing configurations. * feat: Enabled import order in eslint. * # Moved tests to __tests__ folder # added tests for MCPServersRegistry.ts * # Add unit tests for ConnectionsRepository functionality * # Add unit tests for MCPConnectionFactory functionality * # Reorganize MCP connection tests and improve error handling * # reordering imports * # Update testPathIgnorePatterns in jest.config.mjs to exclude development TypeScript files * # removed mcp/manager.ts
140 lines
2 KiB
Text
140 lines
2 KiB
Text
### node etc ###
|
|
|
|
# Logs
|
|
data-node
|
|
meili_data*
|
|
data/
|
|
logs
|
|
*.log
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
.git
|
|
|
|
# CI/CD data
|
|
test-image*
|
|
|
|
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
lib-cov
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage
|
|
|
|
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
|
.grunt
|
|
|
|
# translation services
|
|
config/translations/stores/*
|
|
client/src/localization/languages/*_missing_keys.json
|
|
|
|
# Compiled Dirs (http://nodejs.org/api/addons.html)
|
|
build/
|
|
dist/
|
|
public/main.js
|
|
public/main.js.map
|
|
public/main.js.LICENSE.txt
|
|
client/public/images/
|
|
client/public/main.js
|
|
client/public/main.js.map
|
|
client/public/main.js.LICENSE.txt
|
|
|
|
# Azure Blob Storage Emulator (Azurite)
|
|
__azurite**
|
|
__blobstorage__/**/*
|
|
|
|
# Dependency directorys
|
|
# Deployed apps should consider commenting these lines out:
|
|
# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git
|
|
node_modules/
|
|
meili_data/
|
|
api/node_modules/
|
|
client/node_modules/
|
|
bower_components/
|
|
*.d.ts
|
|
!vite-env.d.ts
|
|
|
|
# AI
|
|
.clineignore
|
|
.cursor
|
|
.aider*
|
|
|
|
# Floobits
|
|
.floo
|
|
.floobit
|
|
.floo
|
|
.flooignore
|
|
|
|
#config file
|
|
librechat.yaml
|
|
librechat.yml
|
|
|
|
# Environment
|
|
.npmrc
|
|
.env*
|
|
my.secrets
|
|
!**/.env.example
|
|
!**/.env.test.example
|
|
cache.json
|
|
api/data/
|
|
owner.yml
|
|
archive
|
|
.vscode/settings.json
|
|
src/style - official.css
|
|
/e2e/specs/.test-results/
|
|
/e2e/playwright-report/
|
|
/playwright/.cache/
|
|
.DS_Store
|
|
*.code-workspace
|
|
.idx
|
|
monospace.json
|
|
.idea
|
|
*.iml
|
|
*.pem
|
|
config.local.ts
|
|
**/storageState.json
|
|
junit.xml
|
|
**/.venv/
|
|
**/venv/
|
|
|
|
# docker override file
|
|
docker-compose.override.yaml
|
|
docker-compose.override.yml
|
|
|
|
# meilisearch
|
|
meilisearch
|
|
meilisearch.exe
|
|
data.ms/*
|
|
auth.json
|
|
|
|
/packages/ux-shared/
|
|
/images
|
|
|
|
!client/src/components/Nav/SettingsTabs/Data/
|
|
|
|
# User uploads
|
|
uploads/
|
|
|
|
# owner
|
|
release/
|
|
|
|
# Helm
|
|
helm/librechat/Chart.lock
|
|
helm/**/charts/
|
|
helm/**/.values.yaml
|
|
|
|
!/client/src/@types/i18next.d.ts
|
|
|
|
# SAML Idp cert
|
|
*.cert
|
|
|
|
# AI Assistants
|
|
/.claude/
|
|
/.cursor/
|
|
/.copilot/
|
|
/.aider/
|
|
/.openai/
|
|
/.tabnine/
|
|
/.codeium
|
|
*.local.md
|