mirror of
https://github.com/samanhappy/mcphub.git
synced 2026-01-01 04:08:52 -05:00
Compare commits
6 Commits
copilot/se
...
copilot/ad
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3d667e10f8 | ||
|
|
c06f9ed916 | ||
|
|
8ae542bdab | ||
|
|
88ce94b988 | ||
|
|
7cc330e721 | ||
|
|
ab338e80a7 |
272
.github/copilot-instructions.md
vendored
272
.github/copilot-instructions.md
vendored
@@ -1,272 +0,0 @@
|
|||||||
# MCPHub Coding Instructions
|
|
||||||
|
|
||||||
**ALWAYS follow these instructions first and only fallback to additional search and context gathering if the information here is incomplete or found to be in error.**
|
|
||||||
|
|
||||||
## Project Overview
|
|
||||||
|
|
||||||
MCPHub is a TypeScript/Node.js MCP (Model Context Protocol) server management hub that provides unified access through HTTP endpoints. It serves as a centralized dashboard for managing multiple MCP servers with real-time monitoring, authentication, and flexible routing.
|
|
||||||
|
|
||||||
**Core Components:**
|
|
||||||
|
|
||||||
- **Backend**: Express.js + TypeScript + ESM (`src/server.ts`)
|
|
||||||
- **Frontend**: React/Vite + Tailwind CSS (`frontend/`)
|
|
||||||
- **MCP Integration**: Connects multiple MCP servers (`src/services/mcpService.ts`)
|
|
||||||
- **Authentication**: JWT-based with bcrypt password hashing
|
|
||||||
- **Configuration**: JSON-based MCP server definitions (`mcp_settings.json`)
|
|
||||||
- **Documentation**: API docs and usage instructions(`docs/`)
|
|
||||||
|
|
||||||
## Working Effectively
|
|
||||||
|
|
||||||
### Bootstrap and Setup (CRITICAL - Follow Exact Steps)
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Install pnpm if not available
|
|
||||||
npm install -g pnpm
|
|
||||||
|
|
||||||
# Install dependencies - takes ~30 seconds
|
|
||||||
pnpm install
|
|
||||||
|
|
||||||
# Setup environment (optional)
|
|
||||||
cp .env.example .env
|
|
||||||
|
|
||||||
# Build and test to verify setup
|
|
||||||
pnpm lint # ~3 seconds - NEVER CANCEL
|
|
||||||
pnpm backend:build # ~5 seconds - NEVER CANCEL
|
|
||||||
pnpm test:ci # ~16 seconds - NEVER CANCEL. Set timeout to 60+ seconds
|
|
||||||
pnpm frontend:build # ~5 seconds - NEVER CANCEL
|
|
||||||
pnpm build # ~10 seconds total - NEVER CANCEL. Set timeout to 60+ seconds
|
|
||||||
```
|
|
||||||
|
|
||||||
**CRITICAL TIMING**: These commands are fast but NEVER CANCEL them. Always wait for completion.
|
|
||||||
|
|
||||||
### Development Environment
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Start both backend and frontend (recommended for most development)
|
|
||||||
pnpm dev # Backend on :3001, Frontend on :5173
|
|
||||||
|
|
||||||
# OR start separately (required on Windows, optional on Linux/macOS)
|
|
||||||
# Terminal 1: Backend only
|
|
||||||
pnpm backend:dev # Runs on port 3000 (or PORT env var)
|
|
||||||
|
|
||||||
# Terminal 2: Frontend only
|
|
||||||
pnpm frontend:dev # Runs on port 5173, proxies API to backend
|
|
||||||
```
|
|
||||||
|
|
||||||
**NEVER CANCEL**: Development servers may take 10-15 seconds to fully initialize all MCP servers.
|
|
||||||
|
|
||||||
### Build Commands (Production)
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Full production build - takes ~10 seconds total
|
|
||||||
pnpm build # NEVER CANCEL - Set timeout to 60+ seconds
|
|
||||||
|
|
||||||
# Individual builds
|
|
||||||
pnpm backend:build # TypeScript compilation - ~5 seconds
|
|
||||||
pnpm frontend:build # Vite build - ~5 seconds
|
|
||||||
|
|
||||||
# Start production server
|
|
||||||
pnpm start # Requires dist/ and frontend/dist/ to exist
|
|
||||||
```
|
|
||||||
|
|
||||||
### Testing and Validation
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Run all tests - takes ~16 seconds with 73 tests
|
|
||||||
pnpm test:ci # NEVER CANCEL - Set timeout to 60+ seconds
|
|
||||||
|
|
||||||
# Development testing
|
|
||||||
pnpm test # Interactive mode
|
|
||||||
pnpm test:watch # Watch mode for development
|
|
||||||
pnpm test:coverage # With coverage report
|
|
||||||
|
|
||||||
# Code quality
|
|
||||||
pnpm lint # ESLint - ~3 seconds
|
|
||||||
pnpm format # Prettier formatting - ~3 seconds
|
|
||||||
```
|
|
||||||
|
|
||||||
**CRITICAL**: All tests MUST pass before committing. Do not modify tests to make them pass unless specifically required for your changes.
|
|
||||||
|
|
||||||
## Manual Validation Requirements
|
|
||||||
|
|
||||||
**ALWAYS perform these validation steps after making changes:**
|
|
||||||
|
|
||||||
### 1. Basic Application Functionality
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Start the application
|
|
||||||
pnpm dev
|
|
||||||
|
|
||||||
# Verify backend responds (in another terminal)
|
|
||||||
curl http://localhost:3000/api/health
|
|
||||||
# Expected: Should return health status
|
|
||||||
|
|
||||||
# Verify frontend serves
|
|
||||||
curl -I http://localhost:3000/
|
|
||||||
# Expected: HTTP 200 OK with HTML content
|
|
||||||
```
|
|
||||||
|
|
||||||
### 2. MCP Server Integration Test
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Check MCP servers are loading (look for log messages)
|
|
||||||
# Expected log output should include:
|
|
||||||
# - "Successfully connected client for server: [name]"
|
|
||||||
# - "Successfully listed [N] tools for server: [name]"
|
|
||||||
# - Some servers may fail due to missing API keys (normal in dev)
|
|
||||||
```
|
|
||||||
|
|
||||||
### 3. Build Verification
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Verify production build works
|
|
||||||
pnpm build
|
|
||||||
node scripts/verify-dist.js
|
|
||||||
# Expected: "✅ Verification passed! Frontend and backend dist files are present."
|
|
||||||
```
|
|
||||||
|
|
||||||
**NEVER skip these validation steps**. If any fail, debug and fix before proceeding.
|
|
||||||
|
|
||||||
## Project Structure and Key Files
|
|
||||||
|
|
||||||
### Critical Backend Files
|
|
||||||
|
|
||||||
- `src/index.ts` - Application entry point
|
|
||||||
- `src/server.ts` - Express server setup and middleware
|
|
||||||
- `src/services/mcpService.ts` - **Core MCP server management logic**
|
|
||||||
- `src/config/index.ts` - Configuration management
|
|
||||||
- `src/routes/` - HTTP route definitions
|
|
||||||
- `src/controllers/` - HTTP request handlers
|
|
||||||
- `src/dao/` - Data access layer (supports JSON file & PostgreSQL)
|
|
||||||
- `src/db/` - TypeORM entities & repositories (for PostgreSQL mode)
|
|
||||||
- `src/types/index.ts` - TypeScript type definitions
|
|
||||||
|
|
||||||
### DAO Layer (Dual Data Source)
|
|
||||||
|
|
||||||
MCPHub supports **JSON file** (default) and **PostgreSQL** storage:
|
|
||||||
|
|
||||||
- Set `USE_DB=true` + `DB_URL=postgresql://...` to use database
|
|
||||||
- When modifying data structures, update: `src/types/`, `src/dao/`, `src/db/entities/`, `src/db/repositories/`, `src/utils/migration.ts`
|
|
||||||
- See `AGENTS.md` for detailed DAO modification checklist
|
|
||||||
|
|
||||||
### Critical Frontend Files
|
|
||||||
|
|
||||||
- `frontend/src/` - React application source
|
|
||||||
- `frontend/src/pages/` - Page components (development entry point)
|
|
||||||
- `frontend/src/components/` - Reusable UI components
|
|
||||||
- `frontend/src/utils/fetchInterceptor.js` - Backend API interaction
|
|
||||||
|
|
||||||
### Configuration Files
|
|
||||||
|
|
||||||
- `mcp_settings.json` - **MCP server definitions and user accounts**
|
|
||||||
- `package.json` - Dependencies and scripts
|
|
||||||
- `tsconfig.json` - TypeScript configuration
|
|
||||||
- `jest.config.cjs` - Test configuration
|
|
||||||
- `.eslintrc.json` - Linting rules
|
|
||||||
|
|
||||||
### Docker and Deployment
|
|
||||||
|
|
||||||
- `Dockerfile` - Multi-stage build with Python base + Node.js
|
|
||||||
- `entrypoint.sh` - Docker startup script
|
|
||||||
- `bin/cli.js` - NPM package CLI entry point
|
|
||||||
|
|
||||||
## Development Process and Conventions
|
|
||||||
|
|
||||||
### Code Style Requirements
|
|
||||||
|
|
||||||
- **ESM modules**: Always use `.js` extensions in imports, not `.ts`
|
|
||||||
- **English only**: All code comments must be written in English
|
|
||||||
- **TypeScript strict**: Follow strict type checking rules
|
|
||||||
- **Import style**: `import { something } from './file.js'` (note .js extension)
|
|
||||||
|
|
||||||
### Key Configuration Notes
|
|
||||||
|
|
||||||
- **MCP servers**: Defined in `mcp_settings.json` with command/args
|
|
||||||
- **Endpoints**: `/mcp/{group|server}` and `/mcp/$smart` for routing
|
|
||||||
- **i18n**: Frontend uses react-i18next with files in `locales/` folder
|
|
||||||
- **Authentication**: JWT tokens with bcrypt password hashing
|
|
||||||
- **Default credentials**: admin/admin123 (configured in mcp_settings.json)
|
|
||||||
|
|
||||||
### Development Entry Points
|
|
||||||
|
|
||||||
- **Add MCP server**: Modify `mcp_settings.json` and restart
|
|
||||||
- **New API endpoint**: Add route in `src/routes/`, controller in `src/controllers/`
|
|
||||||
- **Frontend feature**: Start from `frontend/src/pages/` or `frontend/src/components/`
|
|
||||||
- **Add tests**: Follow patterns in `tests/` directory
|
|
||||||
|
|
||||||
### Common Development Tasks
|
|
||||||
|
|
||||||
#### Adding a new MCP server:
|
|
||||||
|
|
||||||
1. Add server definition to `mcp_settings.json`
|
|
||||||
2. Restart backend to load new server
|
|
||||||
3. Check logs for successful connection
|
|
||||||
4. Test via dashboard or API endpoints
|
|
||||||
|
|
||||||
#### API development:
|
|
||||||
|
|
||||||
1. Define route in `src/routes/`
|
|
||||||
2. Implement controller in `src/controllers/`
|
|
||||||
3. Add types in `src/types/index.ts` if needed
|
|
||||||
4. Write tests in `tests/controllers/`
|
|
||||||
|
|
||||||
#### Frontend development:
|
|
||||||
|
|
||||||
1. Create/modify components in `frontend/src/components/`
|
|
||||||
2. Add pages in `frontend/src/pages/`
|
|
||||||
3. Update routing if needed
|
|
||||||
4. Test in development mode with `pnpm frontend:dev`
|
|
||||||
|
|
||||||
#### Documentation:
|
|
||||||
|
|
||||||
1. Update or add docs in `docs/` folder
|
|
||||||
2. Ensure README.md reflects any major changes
|
|
||||||
|
|
||||||
## Validation and CI Requirements
|
|
||||||
|
|
||||||
### Before Committing - ALWAYS Run:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
pnpm lint # Must pass - ~3 seconds
|
|
||||||
pnpm backend:build # Must compile - ~5 seconds
|
|
||||||
pnpm test:ci # All tests must pass - ~16 seconds
|
|
||||||
pnpm build # Full build must work - ~10 seconds
|
|
||||||
```
|
|
||||||
|
|
||||||
**CRITICAL**: CI will fail if any of these commands fail. Fix issues locally first.
|
|
||||||
|
|
||||||
### CI Pipeline (.github/workflows/ci.yml)
|
|
||||||
|
|
||||||
- Runs on Node.js 20.x
|
|
||||||
- Tests: linting, type checking, unit tests with coverage
|
|
||||||
- **NEVER CANCEL**: CI builds may take 2-3 minutes total
|
|
||||||
|
|
||||||
## Troubleshooting
|
|
||||||
|
|
||||||
### Common Issues
|
|
||||||
|
|
||||||
- **"uvx command not found"**: Some MCP servers require `uvx` (Python package manager) - this is expected in development
|
|
||||||
- **Port already in use**: Change PORT environment variable or kill existing processes
|
|
||||||
- **Frontend not loading**: Ensure frontend was built with `pnpm frontend:build`
|
|
||||||
- **MCP server connection failed**: Check server command/args in `mcp_settings.json`
|
|
||||||
|
|
||||||
### Build Failures
|
|
||||||
|
|
||||||
- **TypeScript errors**: Run `pnpm backend:build` to see compilation errors
|
|
||||||
- **Test failures**: Run `pnpm test:verbose` for detailed test output
|
|
||||||
- **Lint errors**: Run `pnpm lint` and fix reported issues
|
|
||||||
|
|
||||||
### Development Issues
|
|
||||||
|
|
||||||
- **Backend not starting**: Check for port conflicts, verify `mcp_settings.json` syntax
|
|
||||||
- **Frontend proxy errors**: Ensure backend is running before starting frontend
|
|
||||||
- **Hot reload not working**: Restart development server
|
|
||||||
|
|
||||||
## Performance Notes
|
|
||||||
|
|
||||||
- **Install time**: pnpm install takes ~30 seconds
|
|
||||||
- **Build time**: Full build takes ~10 seconds
|
|
||||||
- **Test time**: Complete test suite takes ~16 seconds
|
|
||||||
- **Startup time**: Backend initialization takes 10-15 seconds (MCP server connections)
|
|
||||||
|
|
||||||
**Remember**: NEVER CANCEL any build or test commands. Always wait for completion even if they seem slow.
|
|
||||||
386
AGENTS.md
386
AGENTS.md
@@ -1,26 +1,214 @@
|
|||||||
# Repository Guidelines
|
# MCPHub Development Guide & Agent Instructions
|
||||||
|
|
||||||
These notes align current contributors around the code layout, daily commands, and collaboration habits that keep `@samanhappy/mcphub` moving quickly.
|
**ALWAYS follow these instructions first and only fallback to additional search and context gathering if the information here is incomplete or found to be in error.**
|
||||||
|
|
||||||
|
This document serves as the primary reference for all contributors and AI agents working on `@samanhappy/mcphub`. It provides comprehensive guidance on code organization, development workflow, and project conventions.
|
||||||
|
|
||||||
|
## Project Overview
|
||||||
|
|
||||||
|
MCPHub is a TypeScript/Node.js MCP (Model Context Protocol) server management hub that provides unified access through HTTP endpoints. It serves as a centralized dashboard for managing multiple MCP servers with real-time monitoring, authentication, and flexible routing.
|
||||||
|
|
||||||
|
**Core Components:**
|
||||||
|
|
||||||
|
- **Backend**: Express.js + TypeScript + ESM (`src/server.ts`)
|
||||||
|
- **Frontend**: React/Vite + Tailwind CSS (`frontend/`)
|
||||||
|
- **MCP Integration**: Connects multiple MCP servers (`src/services/mcpService.ts`)
|
||||||
|
- **Authentication**: JWT-based with bcrypt password hashing
|
||||||
|
- **Configuration**: JSON-based MCP server definitions (`mcp_settings.json`)
|
||||||
|
- **Documentation**: API docs and usage instructions(`docs/`)
|
||||||
|
|
||||||
|
## Bootstrap and Setup (CRITICAL - Follow Exact Steps)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Install pnpm if not available
|
||||||
|
npm install -g pnpm
|
||||||
|
|
||||||
|
# Install dependencies - takes ~30 seconds
|
||||||
|
pnpm install
|
||||||
|
|
||||||
|
# Setup environment (optional)
|
||||||
|
cp .env.example .env
|
||||||
|
|
||||||
|
# Build and test to verify setup
|
||||||
|
pnpm lint # ~3 seconds - NEVER CANCEL
|
||||||
|
pnpm backend:build # ~5 seconds - NEVER CANCEL
|
||||||
|
pnpm test:ci # ~16 seconds - NEVER CANCEL. Set timeout to 60+ seconds
|
||||||
|
pnpm frontend:build # ~5 seconds - NEVER CANCEL
|
||||||
|
pnpm build # ~10 seconds total - NEVER CANCEL. Set timeout to 60+ seconds
|
||||||
|
```
|
||||||
|
|
||||||
|
**CRITICAL TIMING**: These commands are fast but NEVER CANCEL them. Always wait for completion.
|
||||||
|
|
||||||
|
## Manual Validation Requirements
|
||||||
|
|
||||||
|
**ALWAYS perform these validation steps after making changes:**
|
||||||
|
|
||||||
|
### 1. Basic Application Functionality
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Start the application
|
||||||
|
pnpm dev
|
||||||
|
|
||||||
|
# Verify backend responds (in another terminal)
|
||||||
|
curl http://localhost:3000/api/health
|
||||||
|
# Expected: Should return health status
|
||||||
|
|
||||||
|
# Verify frontend serves
|
||||||
|
curl -I http://localhost:3000/
|
||||||
|
# Expected: HTTP 200 OK with HTML content
|
||||||
|
```
|
||||||
|
|
||||||
|
### 2. MCP Server Integration Test
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Check MCP servers are loading (look for log messages)
|
||||||
|
# Expected log output should include:
|
||||||
|
# - "Successfully connected client for server: [name]"
|
||||||
|
# - "Successfully listed [N] tools for server: [name]"
|
||||||
|
# - Some servers may fail due to missing API keys (normal in dev)
|
||||||
|
```
|
||||||
|
|
||||||
|
### 3. Build Verification
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Verify production build works
|
||||||
|
pnpm build
|
||||||
|
node scripts/verify-dist.js
|
||||||
|
# Expected: "✅ Verification passed! Frontend and backend dist files are present."
|
||||||
|
```
|
||||||
|
|
||||||
|
**NEVER skip these validation steps**. If any fail, debug and fix before proceeding.
|
||||||
|
|
||||||
## Project Structure & Module Organization
|
## Project Structure & Module Organization
|
||||||
|
|
||||||
- Backend services live in `src`, grouped by responsibility (`controllers/`, `services/`, `dao/`, `routes/`, `utils/`), with `server.ts` orchestrating HTTP bootstrap.
|
### Critical Backend Files
|
||||||
- `frontend/src` contains the Vite + React dashboard; `frontend/public` hosts static assets and translations sit in `locales/`.
|
|
||||||
- Jest-aware test code is split between colocated specs (`src/**/*.{test,spec}.ts`) and higher-level suites in `tests/`; use `tests/utils/` helpers when exercising the CLI or SSE flows.
|
- `src/index.ts` - Application entry point
|
||||||
- Build artifacts and bundles are generated into `dist/`, `frontend/dist/`, and `coverage/`; never edit these manually.
|
- `src/server.ts` - Express server setup and middleware (orchestrating HTTP bootstrap)
|
||||||
|
- `src/services/mcpService.ts` - **Core MCP server management logic**
|
||||||
|
- `src/config/index.ts` - Configuration management
|
||||||
|
- `src/routes/` - HTTP route definitions
|
||||||
|
- `src/controllers/` - HTTP request handlers
|
||||||
|
- `src/dao/` - Data access layer (supports JSON file & PostgreSQL)
|
||||||
|
- `src/db/` - TypeORM entities & repositories (for PostgreSQL mode)
|
||||||
|
- `src/types/index.ts` - TypeScript type definitions and shared DTOs
|
||||||
|
- `src/utils/` - Utility functions and helpers
|
||||||
|
|
||||||
|
### Critical Frontend Files
|
||||||
|
|
||||||
|
- `frontend/src/` - React application source (Vite + React dashboard)
|
||||||
|
- `frontend/src/pages/` - Page components (development entry point)
|
||||||
|
- `frontend/src/components/` - Reusable UI components
|
||||||
|
- `frontend/src/utils/fetchInterceptor.js` - Backend API interaction
|
||||||
|
- `frontend/public/` - Static assets
|
||||||
|
|
||||||
|
### Configuration Files
|
||||||
|
|
||||||
|
- `mcp_settings.json` - **MCP server definitions and user accounts**
|
||||||
|
- `package.json` - Dependencies and scripts
|
||||||
|
- `tsconfig.json` - TypeScript configuration
|
||||||
|
- `jest.config.cjs` - Test configuration
|
||||||
|
- `.eslintrc.json` - Linting rules
|
||||||
|
|
||||||
|
### Test Organization
|
||||||
|
|
||||||
|
- Jest-aware test code is split between colocated specs (`src/**/*.{test,spec}.ts`) and higher-level suites in `tests/`
|
||||||
|
- Use `tests/utils/` helpers when exercising the CLI or SSE flows
|
||||||
|
- Mirror production directory names when adding new suites
|
||||||
|
- End filenames with `.test.ts` or `.spec.ts` for automatic discovery
|
||||||
|
|
||||||
|
### Build Artifacts
|
||||||
|
|
||||||
|
- `dist/` - Backend build output (TypeScript compilation)
|
||||||
|
- `frontend/dist/` - Frontend build output (Vite bundle)
|
||||||
|
- `coverage/` - Test coverage reports
|
||||||
|
- **Never edit these manually**
|
||||||
|
|
||||||
|
### Localization
|
||||||
|
|
||||||
|
- Translations sit in `locales/` (en.json, fr.json, tr.json, zh.json)
|
||||||
|
- Frontend uses react-i18next
|
||||||
|
|
||||||
|
### Docker and Deployment
|
||||||
|
|
||||||
|
- `Dockerfile` - Multi-stage build with Python base + Node.js
|
||||||
|
- `entrypoint.sh` - Docker startup script
|
||||||
|
- `bin/cli.js` - NPM package CLI entry point
|
||||||
|
|
||||||
## Build, Test, and Development Commands
|
## Build, Test, and Development Commands
|
||||||
|
|
||||||
- `pnpm dev` runs backend (`tsx watch src/index.ts`) and frontend (`vite`) together for local iteration.
|
### Development Environment
|
||||||
- `pnpm backend:dev`, `pnpm frontend:dev`, and `pnpm frontend:preview` target each surface independently; prefer them when debugging one stack.
|
|
||||||
- `pnpm build` executes `pnpm backend:build` (TypeScript to `dist/`) and `pnpm frontend:build`; run before release or publishing.
|
```bash
|
||||||
- `pnpm test`, `pnpm test:watch`, and `pnpm test:coverage` drive Jest; `pnpm lint` and `pnpm format` enforce style via ESLint and Prettier.
|
# Start both backend and frontend (recommended for most development)
|
||||||
|
pnpm dev # Backend on :3001, Frontend on :5173
|
||||||
|
|
||||||
|
# OR start separately (required on Windows, optional on Linux/macOS)
|
||||||
|
# Terminal 1: Backend only
|
||||||
|
pnpm backend:dev # Runs on port 3000 (or PORT env var)
|
||||||
|
|
||||||
|
# Terminal 2: Frontend only
|
||||||
|
pnpm frontend:dev # Runs on port 5173, proxies API to backend
|
||||||
|
|
||||||
|
# Frontend preview (production build)
|
||||||
|
pnpm frontend:preview # Preview production build
|
||||||
|
```
|
||||||
|
|
||||||
|
**NEVER CANCEL**: Development servers may take 10-15 seconds to fully initialize all MCP servers.
|
||||||
|
|
||||||
|
### Production Build
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Full production build - takes ~10 seconds total
|
||||||
|
pnpm build # NEVER CANCEL - Set timeout to 60+ seconds
|
||||||
|
|
||||||
|
# Individual builds
|
||||||
|
pnpm backend:build # TypeScript compilation to dist/ - ~5 seconds
|
||||||
|
pnpm frontend:build # Vite build to frontend/dist/ - ~5 seconds
|
||||||
|
|
||||||
|
# Start production server
|
||||||
|
pnpm start # Requires dist/ and frontend/dist/ to exist
|
||||||
|
```
|
||||||
|
|
||||||
|
Run `pnpm build` before release or publishing.
|
||||||
|
|
||||||
|
### Testing and Validation
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Run all tests - takes ~16 seconds with 73 tests
|
||||||
|
pnpm test:ci # NEVER CANCEL - Set timeout to 60+ seconds
|
||||||
|
|
||||||
|
# Development testing
|
||||||
|
pnpm test # Interactive mode
|
||||||
|
pnpm test:watch # Watch mode for development
|
||||||
|
pnpm test:coverage # With coverage report
|
||||||
|
|
||||||
|
# Code quality
|
||||||
|
pnpm lint # ESLint - ~3 seconds
|
||||||
|
pnpm format # Prettier formatting - ~3 seconds
|
||||||
|
```
|
||||||
|
|
||||||
|
**CRITICAL**: All tests MUST pass before committing. Do not modify tests to make them pass unless specifically required for your changes.
|
||||||
|
|
||||||
|
### Performance Notes
|
||||||
|
|
||||||
|
- **Install time**: pnpm install takes ~30 seconds
|
||||||
|
- **Build time**: Full build takes ~10 seconds
|
||||||
|
- **Test time**: Complete test suite takes ~16 seconds
|
||||||
|
- **Startup time**: Backend initialization takes 10-15 seconds (MCP server connections)
|
||||||
|
|
||||||
## Coding Style & Naming Conventions
|
## Coding Style & Naming Conventions
|
||||||
|
|
||||||
- TypeScript everywhere; default to 2-space indentation and single quotes, letting Prettier settle formatting. ESLint configuration assumes ES modules.
|
- **TypeScript everywhere**: Default to 2-space indentation and single quotes, letting Prettier settle formatting
|
||||||
- Name services and data access layers with suffixes (`UserService`, `AuthDao`), React components and files in `PascalCase`, and utility modules in `camelCase`.
|
- **ESM modules**: Always use `.js` extensions in imports, not `.ts` (e.g., `import { something } from './file.js'`)
|
||||||
- Keep DTOs and shared types in `src/types` to avoid duplication; re-export through index files only when it clarifies imports.
|
- **English only**: All code comments must be written in English
|
||||||
|
- **TypeScript strict**: Follow strict type checking rules
|
||||||
|
- **Naming conventions**:
|
||||||
|
- Services and data access layers: Use suffixes (`UserService`, `AuthDao`)
|
||||||
|
- React components and files: `PascalCase`
|
||||||
|
- Utility modules: `camelCase`
|
||||||
|
- **Types and DTOs**: Keep in `src/types` to avoid duplication; re-export through index files only when it clarifies imports
|
||||||
|
- **ESLint configuration**: Assumes ES modules
|
||||||
|
|
||||||
## Testing Guidelines
|
## Testing Guidelines
|
||||||
|
|
||||||
@@ -28,12 +216,86 @@ These notes align current contributors around the code layout, daily commands, a
|
|||||||
- Mirror production directory names when adding new suites and end filenames with `.test.ts` or `.spec.ts` for automatic discovery.
|
- Mirror production directory names when adding new suites and end filenames with `.test.ts` or `.spec.ts` for automatic discovery.
|
||||||
- Aim to maintain or raise coverage when touching critical flows (auth, OAuth, SSE); add integration tests under `tests/integration/` when touching cross-service logic.
|
- Aim to maintain or raise coverage when touching critical flows (auth, OAuth, SSE); add integration tests under `tests/integration/` when touching cross-service logic.
|
||||||
|
|
||||||
|
## Key Configuration Notes
|
||||||
|
|
||||||
|
- **MCP servers**: Defined in `mcp_settings.json` with command/args
|
||||||
|
- **Endpoints**: `/mcp/{group|server}` and `/mcp/$smart` for routing
|
||||||
|
- **i18n**: Frontend uses react-i18next with files in `locales/` folder
|
||||||
|
- **Authentication**: JWT tokens with bcrypt password hashing
|
||||||
|
- **Default credentials**: admin/admin123 (configured in mcp_settings.json)
|
||||||
|
|
||||||
|
## Development Entry Points
|
||||||
|
|
||||||
|
### Adding a new MCP server
|
||||||
|
|
||||||
|
1. Add server definition to `mcp_settings.json`
|
||||||
|
2. Restart backend to load new server
|
||||||
|
3. Check logs for successful connection
|
||||||
|
4. Test via dashboard or API endpoints
|
||||||
|
|
||||||
|
### API development
|
||||||
|
|
||||||
|
1. Define route in `src/routes/`
|
||||||
|
2. Implement controller in `src/controllers/`
|
||||||
|
3. Add types in `src/types/index.ts` if needed
|
||||||
|
4. Write tests in `tests/controllers/`
|
||||||
|
|
||||||
|
### Frontend development
|
||||||
|
|
||||||
|
1. Create/modify components in `frontend/src/components/`
|
||||||
|
2. Add pages in `frontend/src/pages/`
|
||||||
|
3. Update routing if needed
|
||||||
|
4. Test in development mode with `pnpm frontend:dev`
|
||||||
|
|
||||||
|
### Documentation
|
||||||
|
|
||||||
|
1. Update or add docs in `docs/` folder
|
||||||
|
2. Ensure README.md reflects any major changes
|
||||||
|
|
||||||
## Commit & Pull Request Guidelines
|
## Commit & Pull Request Guidelines
|
||||||
|
|
||||||
- Follow the existing Conventional Commit pattern (`feat:`, `fix:`, `chore:`, etc.) with imperative, present-tense summaries and optional multi-line context.
|
- Follow the existing Conventional Commit pattern (`feat:`, `fix:`, `chore:`, etc.) with imperative, present-tense summaries and optional multi-line context.
|
||||||
- Each PR should describe the behavior change, list testing performed, and link issues; include before/after screenshots or GIFs for frontend tweaks.
|
- Each PR should describe the behavior change, list testing performed, and link issues; include before/after screenshots or GIFs for frontend tweaks.
|
||||||
- Re-run `pnpm build` and `pnpm test` before requesting review, and ensure generated artifacts stay out of the diff.
|
- Re-run `pnpm build` and `pnpm test` before requesting review, and ensure generated artifacts stay out of the diff.
|
||||||
|
|
||||||
|
### Before Committing - ALWAYS Run
|
||||||
|
|
||||||
|
```bash
|
||||||
|
pnpm lint # Must pass - ~3 seconds
|
||||||
|
pnpm backend:build # Must compile - ~5 seconds
|
||||||
|
pnpm test:ci # All tests must pass - ~16 seconds
|
||||||
|
pnpm build # Full build must work - ~10 seconds
|
||||||
|
```
|
||||||
|
|
||||||
|
**CRITICAL**: CI will fail if any of these commands fail. Fix issues locally first.
|
||||||
|
|
||||||
|
### CI Pipeline (.github/workflows/ci.yml)
|
||||||
|
|
||||||
|
- Runs on Node.js 20.x
|
||||||
|
- Tests: linting, type checking, unit tests with coverage
|
||||||
|
- **NEVER CANCEL**: CI builds may take 2-3 minutes total
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
### Common Issues
|
||||||
|
|
||||||
|
- **"uvx command not found"**: Some MCP servers require `uvx` (Python package manager) - this is expected in development
|
||||||
|
- **Port already in use**: Change PORT environment variable or kill existing processes
|
||||||
|
- **Frontend not loading**: Ensure frontend was built with `pnpm frontend:build`
|
||||||
|
- **MCP server connection failed**: Check server command/args in `mcp_settings.json`
|
||||||
|
|
||||||
|
### Build Failures
|
||||||
|
|
||||||
|
- **TypeScript errors**: Run `pnpm backend:build` to see compilation errors
|
||||||
|
- **Test failures**: Run `pnpm test:verbose` for detailed test output
|
||||||
|
- **Lint errors**: Run `pnpm lint` and fix reported issues
|
||||||
|
|
||||||
|
### Development Issues
|
||||||
|
|
||||||
|
- **Backend not starting**: Check for port conflicts, verify `mcp_settings.json` syntax
|
||||||
|
- **Frontend proxy errors**: Ensure backend is running before starting frontend
|
||||||
|
- **Hot reload not working**: Restart development server
|
||||||
|
|
||||||
## DAO Layer & Dual Data Source
|
## DAO Layer & Dual Data Source
|
||||||
|
|
||||||
MCPHub supports **JSON file** (default) and **PostgreSQL** storage. Set `USE_DB=true` + `DB_URL` to switch.
|
MCPHub supports **JSON file** (default) and **PostgreSQL** storage. Set `USE_DB=true` + `DB_URL` to switch.
|
||||||
@@ -63,16 +325,100 @@ When adding/changing fields, update **ALL** these files:
|
|||||||
|
|
||||||
### Data Type Mapping
|
### Data Type Mapping
|
||||||
|
|
||||||
| Model | DAO | DB Entity | JSON Path |
|
| Model | DAO | DB Entity | JSON Path |
|
||||||
| -------------- | ----------------- | -------------- | ------------------------ |
|
| -------------- | ----------------- | -------------- | ------------------------- |
|
||||||
| `IUser` | `UserDao` | `User` | `settings.users[]` |
|
| `IUser` | `UserDao` | `User` | `settings.users[]` |
|
||||||
| `ServerConfig` | `ServerDao` | `Server` | `settings.mcpServers{}` |
|
| `ServerConfig` | `ServerDao` | `Server` | `settings.mcpServers{}` |
|
||||||
| `IGroup` | `GroupDao` | `Group` | `settings.groups[]` |
|
| `IGroup` | `GroupDao` | `Group` | `settings.groups[]` |
|
||||||
| `SystemConfig` | `SystemConfigDao` | `SystemConfig` | `settings.systemConfig` |
|
| `SystemConfig` | `SystemConfigDao` | `SystemConfig` | `settings.systemConfig` |
|
||||||
| `UserConfig` | `UserConfigDao` | `UserConfig` | `settings.userConfigs{}` |
|
| `UserConfig` | `UserConfigDao` | `UserConfig` | `settings.userConfigs{}` |
|
||||||
|
| `BearerKey` | `BearerKeyDao` | `BearerKey` | `settings.bearerKeys[]` |
|
||||||
|
| `IOAuthClient` | `OAuthClientDao` | `OAuthClient` | `settings.oauthClients[]` |
|
||||||
|
| `IOAuthToken` | `OAuthTokenDao` | `OAuthToken` | `settings.oauthTokens[]` |
|
||||||
|
|
||||||
### Common Pitfalls
|
### Common Pitfalls
|
||||||
|
|
||||||
- Forgetting migration script → fields won't migrate to DB
|
- Forgetting migration script → fields won't migrate to DB
|
||||||
- Optional fields need `nullable: true` in entity
|
- Optional fields need `nullable: true` in entity
|
||||||
- Complex objects need `simple-json` column type
|
- Complex objects need `simple-json` column type
|
||||||
|
|
||||||
|
## Auto-Evolution Guidelines for AI Agents
|
||||||
|
|
||||||
|
**This section provides guidelines for AI agents to automatically maintain and improve this document.**
|
||||||
|
|
||||||
|
### When to Update AGENTS.md
|
||||||
|
|
||||||
|
AI agents MUST update this document in the following situations:
|
||||||
|
|
||||||
|
#### 1. Code-Documentation Mismatch Detected
|
||||||
|
|
||||||
|
When executing tasks, if you discover that:
|
||||||
|
|
||||||
|
- The actual code structure differs from descriptions in this document
|
||||||
|
- File paths, imports, or module organization has changed
|
||||||
|
- New critical files or directories exist that aren't documented
|
||||||
|
- Documented files or patterns no longer exist
|
||||||
|
|
||||||
|
**Action**: Immediately update the relevant section to reflect the current codebase state.
|
||||||
|
|
||||||
|
**Example scenarios**:
|
||||||
|
|
||||||
|
- A controller is now in `src/api/controllers/` instead of `src/controllers/`
|
||||||
|
- New middleware files exist that should be documented
|
||||||
|
- The DAO implementation has been refactored with a different structure
|
||||||
|
- Build output directories have changed
|
||||||
|
|
||||||
|
#### 2. User Preferences and Requirements
|
||||||
|
|
||||||
|
During conversation, if the user expresses:
|
||||||
|
|
||||||
|
- **Coding preferences**: Indentation style, naming conventions, code organization patterns
|
||||||
|
- **Workflow requirements**: Required validation steps, commit procedures, testing expectations
|
||||||
|
- **Tool preferences**: Preferred libraries, frameworks, or development tools
|
||||||
|
- **Quality standards**: Code review criteria, documentation requirements, error handling patterns
|
||||||
|
- **Development principles**: Architecture decisions, design patterns, best practices
|
||||||
|
|
||||||
|
**Action**: Add or update the relevant section to capture these preferences for future reference.
|
||||||
|
|
||||||
|
**Example scenarios**:
|
||||||
|
|
||||||
|
- User prefers async/await over promises → Update coding style section
|
||||||
|
- User requires specific test coverage thresholds → Update testing guidelines
|
||||||
|
- User has strong opinions about error handling → Add to development process section
|
||||||
|
- User establishes new deployment procedures → Update deployment section
|
||||||
|
|
||||||
|
### How to Update AGENTS.md
|
||||||
|
|
||||||
|
1. **Identify the Section**: Determine which section needs updating based on the type of change
|
||||||
|
2. **Make Precise Changes**: Update only the relevant content, maintaining the document structure
|
||||||
|
3. **Preserve Format**: Keep the existing markdown formatting and organization
|
||||||
|
4. **Add Context**: If adding new content, ensure it fits logically within existing sections
|
||||||
|
5. **Verify Accuracy**: After updating, ensure the new information is accurate and complete
|
||||||
|
|
||||||
|
### Update Principles
|
||||||
|
|
||||||
|
- **Accuracy First**: Documentation must reflect the actual current state
|
||||||
|
- **Clarity**: Use clear, concise language; avoid ambiguity
|
||||||
|
- **Completeness**: Include sufficient detail for agents to work effectively
|
||||||
|
- **Consistency**: Maintain consistent terminology and formatting throughout
|
||||||
|
- **Actionability**: Focus on concrete, actionable guidance rather than vague descriptions
|
||||||
|
|
||||||
|
### Self-Correction Process
|
||||||
|
|
||||||
|
Before completing any task:
|
||||||
|
|
||||||
|
1. Review relevant sections of AGENTS.md
|
||||||
|
2. During execution, note any discrepancies between documentation and reality
|
||||||
|
3. Update AGENTS.md to correct discrepancies
|
||||||
|
4. Verify the update doesn't conflict with other sections
|
||||||
|
5. Proceed with the original task using the updated information
|
||||||
|
|
||||||
|
### Meta-Update Rule
|
||||||
|
|
||||||
|
If this auto-evolution section itself needs improvement based on experience:
|
||||||
|
|
||||||
|
- Update it to better serve future agents
|
||||||
|
- Add new scenarios or principles as they emerge
|
||||||
|
- Refine the update process based on what works well
|
||||||
|
|
||||||
|
**Remember**: This document is a living guide. Keeping it accurate and current is as important as following it.
|
||||||
|
|||||||
@@ -1,205 +0,0 @@
|
|||||||
# Stream Parameter Implementation - Summary
|
|
||||||
|
|
||||||
## Overview
|
|
||||||
Successfully implemented support for a `stream` parameter that allows clients to control whether MCP requests receive Server-Sent Events (SSE) streaming responses or direct JSON responses.
|
|
||||||
|
|
||||||
## Problem Statement (Original Question)
|
|
||||||
> 分析源码,使用 http://localhost:8090/process 请求时,可以使用 stream : false 来设置非流式响应吗
|
|
||||||
>
|
|
||||||
> Translation: After analyzing the source code, when using the http://localhost:8090/process request, can we use stream: false to set non-streaming responses?
|
|
||||||
|
|
||||||
## Answer
|
|
||||||
**Yes, absolutely!** While the endpoint path is `/mcp` (not `/process`), the implementation now fully supports using a `stream` parameter to control response format.
|
|
||||||
|
|
||||||
## Implementation Details
|
|
||||||
|
|
||||||
### Core Changes
|
|
||||||
1. **Modified Functions:**
|
|
||||||
- `createSessionWithId()` - Added `enableJsonResponse` parameter
|
|
||||||
- `createNewSession()` - Added `enableJsonResponse` parameter
|
|
||||||
- `handleMcpPostRequest()` - Added robust stream parameter parsing
|
|
||||||
|
|
||||||
2. **Parameter Parsing:**
|
|
||||||
- Created `parseStreamParam()` helper function
|
|
||||||
- Handles multiple input types: boolean, string, number
|
|
||||||
- Consistent behavior for query and body parameters
|
|
||||||
- Body parameter takes priority over query parameter
|
|
||||||
|
|
||||||
3. **Supported Values:**
|
|
||||||
- **Truthy (streaming enabled):** `true`, `"true"`, `1`, `"1"`, `"yes"`, `"on"`
|
|
||||||
- **Falsy (streaming disabled):** `false`, `"false"`, `0`, `"0"`, `"no"`, `"off"`
|
|
||||||
- **Default:** `true` (streaming enabled) for backward compatibility
|
|
||||||
|
|
||||||
### Usage Examples
|
|
||||||
|
|
||||||
#### Query Parameter
|
|
||||||
```bash
|
|
||||||
# Disable streaming
|
|
||||||
curl -X POST "http://localhost:3000/mcp?stream=false" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-H "Accept: application/json, text/event-stream" \
|
|
||||||
-d '{"method": "initialize", ...}'
|
|
||||||
|
|
||||||
# Enable streaming (default)
|
|
||||||
curl -X POST "http://localhost:3000/mcp?stream=true" ...
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Request Body Parameter
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"method": "initialize",
|
|
||||||
"stream": false,
|
|
||||||
"params": {
|
|
||||||
"protocolVersion": "2025-03-26",
|
|
||||||
"capabilities": {},
|
|
||||||
"clientInfo": {
|
|
||||||
"name": "TestClient",
|
|
||||||
"version": "1.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"jsonrpc": "2.0",
|
|
||||||
"id": 1
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
#### All Route Variants
|
|
||||||
```bash
|
|
||||||
POST /mcp?stream=false # Global route
|
|
||||||
POST /mcp/{group}?stream=false # Group route
|
|
||||||
POST /mcp/{server}?stream=false # Server route
|
|
||||||
POST /mcp/$smart?stream=false # Smart routing
|
|
||||||
```
|
|
||||||
|
|
||||||
### Response Formats
|
|
||||||
|
|
||||||
#### Streaming Response (stream=true or default)
|
|
||||||
```
|
|
||||||
HTTP/1.1 200 OK
|
|
||||||
Content-Type: text/event-stream
|
|
||||||
mcp-session-id: 550e8400-e29b-41d4-a716-446655440000
|
|
||||||
|
|
||||||
data: {"jsonrpc":"2.0","result":{...},"id":1}
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Non-Streaming Response (stream=false)
|
|
||||||
```
|
|
||||||
HTTP/1.1 200 OK
|
|
||||||
Content-Type: application/json
|
|
||||||
mcp-session-id: 550e8400-e29b-41d4-a716-446655440000
|
|
||||||
|
|
||||||
{
|
|
||||||
"jsonrpc": "2.0",
|
|
||||||
"result": {
|
|
||||||
"protocolVersion": "2025-03-26",
|
|
||||||
"capabilities": {...},
|
|
||||||
"serverInfo": {...}
|
|
||||||
},
|
|
||||||
"id": 1
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
## Testing
|
|
||||||
|
|
||||||
### Test Coverage
|
|
||||||
- **Unit Tests:** 12 tests in `src/services/sseService.test.ts`
|
|
||||||
- Basic functionality (6 tests)
|
|
||||||
- Edge cases (6 tests)
|
|
||||||
- **Integration Tests:** 4 tests in `tests/integration/stream-parameter.test.ts`
|
|
||||||
- **Total:** 207 tests passing (16 new tests added)
|
|
||||||
|
|
||||||
### Test Scenarios Covered
|
|
||||||
1. ✓ Query parameter: stream=false
|
|
||||||
2. ✓ Query parameter: stream=true
|
|
||||||
3. ✓ Body parameter: stream=false
|
|
||||||
4. ✓ Body parameter: stream=true
|
|
||||||
5. ✓ Priority: body over query
|
|
||||||
6. ✓ Default: no parameter provided
|
|
||||||
7. ✓ Edge case: string "false", "0", "no", "off"
|
|
||||||
8. ✓ Edge case: string "true", "1", "yes", "on"
|
|
||||||
9. ✓ Edge case: number 0 and 1
|
|
||||||
10. ✓ Edge case: invalid/unknown values
|
|
||||||
|
|
||||||
## Documentation
|
|
||||||
|
|
||||||
### Files Created/Updated
|
|
||||||
1. **New Documentation:**
|
|
||||||
- `docs/stream-parameter.md` - Comprehensive guide with examples and use cases
|
|
||||||
|
|
||||||
2. **Updated Documentation:**
|
|
||||||
- `README.md` - Added link to stream parameter documentation
|
|
||||||
- `README.zh.md` - Added link in Chinese README
|
|
||||||
|
|
||||||
3. **Test Documentation:**
|
|
||||||
- `tests/integration/stream-parameter.test.ts` - Demonstrates usage patterns
|
|
||||||
|
|
||||||
### Documentation Topics Covered
|
|
||||||
- Feature overview
|
|
||||||
- Usage examples (query and body parameters)
|
|
||||||
- Response format comparison
|
|
||||||
- Use cases and when to use each mode
|
|
||||||
- Technical implementation details
|
|
||||||
- Backward compatibility notes
|
|
||||||
- Route variant support
|
|
||||||
- Limitations and considerations
|
|
||||||
|
|
||||||
## Quality Assurance
|
|
||||||
|
|
||||||
### Code Review
|
|
||||||
- ✓ All code review comments addressed
|
|
||||||
- ✓ No outstanding issues
|
|
||||||
- ✓ Consistent parsing logic
|
|
||||||
- ✓ Proper edge case handling
|
|
||||||
|
|
||||||
### Validation Results
|
|
||||||
- ✓ All 207 tests passing
|
|
||||||
- ✓ TypeScript compilation successful
|
|
||||||
- ✓ ESLint checks passed
|
|
||||||
- ✓ Full build completed successfully
|
|
||||||
- ✓ No breaking changes
|
|
||||||
- ✓ Backward compatible
|
|
||||||
|
|
||||||
## Impact Analysis
|
|
||||||
|
|
||||||
### Benefits
|
|
||||||
1. **Flexibility:** Clients can choose response format based on their needs
|
|
||||||
2. **Debugging:** Easier to debug with direct JSON responses
|
|
||||||
3. **Integration:** Simpler integration with systems expecting JSON
|
|
||||||
4. **Testing:** More straightforward to test and validate
|
|
||||||
5. **Backward Compatible:** Existing clients continue to work without changes
|
|
||||||
|
|
||||||
### Performance Considerations
|
|
||||||
- No performance impact on default streaming behavior
|
|
||||||
- Non-streaming mode may have slightly less overhead for simple requests
|
|
||||||
- Session management works identically in both modes
|
|
||||||
|
|
||||||
### Backward Compatibility
|
|
||||||
- Default behavior unchanged (streaming enabled)
|
|
||||||
- All existing clients work without modification
|
|
||||||
- No breaking changes to API or protocol
|
|
||||||
|
|
||||||
## Future Considerations
|
|
||||||
|
|
||||||
### Potential Enhancements
|
|
||||||
1. Add documentation for OpenAPI specification
|
|
||||||
2. Consider adding a configuration option to set default behavior
|
|
||||||
3. Add metrics/logging for stream parameter usage
|
|
||||||
4. Consider adding response format negotiation via Accept header
|
|
||||||
|
|
||||||
### Known Limitations
|
|
||||||
1. Stream parameter only affects POST requests to /mcp endpoint
|
|
||||||
2. SSE GET requests for retrieving streams not affected
|
|
||||||
3. Session rebuild operations inherit stream setting from original request
|
|
||||||
|
|
||||||
## Conclusion
|
|
||||||
|
|
||||||
The implementation successfully adds flexible stream control to the MCP protocol implementation while maintaining full backward compatibility. The robust parsing logic handles all common value formats, and comprehensive testing ensures reliable behavior across all scenarios.
|
|
||||||
|
|
||||||
**Status:** ✅ Complete and Production Ready
|
|
||||||
|
|
||||||
---
|
|
||||||
*Implementation Date: December 25, 2025*
|
|
||||||
*Total Development Time: ~2 hours*
|
|
||||||
*Tests Added: 16*
|
|
||||||
*Lines of Code Changed: ~200*
|
|
||||||
*Documentation Pages: 1 comprehensive guide*
|
|
||||||
@@ -78,7 +78,6 @@ http://localhost:3000/mcp/$smart # Smart routing
|
|||||||
| [Quick Start](https://docs.mcphubx.com/quickstart) | Get started in 5 minutes |
|
| [Quick Start](https://docs.mcphubx.com/quickstart) | Get started in 5 minutes |
|
||||||
| [Configuration](https://docs.mcphubx.com/configuration/mcp-settings) | MCP server configuration options |
|
| [Configuration](https://docs.mcphubx.com/configuration/mcp-settings) | MCP server configuration options |
|
||||||
| [Database Mode](https://docs.mcphubx.com/configuration/database-configuration) | PostgreSQL setup for production |
|
| [Database Mode](https://docs.mcphubx.com/configuration/database-configuration) | PostgreSQL setup for production |
|
||||||
| [Stream Parameter](docs/stream-parameter.md) | Control streaming vs JSON responses |
|
|
||||||
| [OAuth](https://docs.mcphubx.com/features/oauth) | OAuth 2.0 client and server setup |
|
| [OAuth](https://docs.mcphubx.com/features/oauth) | OAuth 2.0 client and server setup |
|
||||||
| [Smart Routing](https://docs.mcphubx.com/features/smart-routing) | AI-powered tool discovery |
|
| [Smart Routing](https://docs.mcphubx.com/features/smart-routing) | AI-powered tool discovery |
|
||||||
| [Docker Setup](https://docs.mcphubx.com/configuration/docker-setup) | Docker deployment guide |
|
| [Docker Setup](https://docs.mcphubx.com/configuration/docker-setup) | Docker deployment guide |
|
||||||
|
|||||||
@@ -78,7 +78,6 @@ http://localhost:3000/mcp/$smart # 智能路由
|
|||||||
| [快速开始](https://docs.mcphubx.com/zh/quickstart) | 5 分钟快速上手 |
|
| [快速开始](https://docs.mcphubx.com/zh/quickstart) | 5 分钟快速上手 |
|
||||||
| [配置指南](https://docs.mcphubx.com/zh/configuration/mcp-settings) | MCP 服务器配置选项 |
|
| [配置指南](https://docs.mcphubx.com/zh/configuration/mcp-settings) | MCP 服务器配置选项 |
|
||||||
| [数据库模式](https://docs.mcphubx.com/zh/configuration/database-configuration) | PostgreSQL 生产环境配置 |
|
| [数据库模式](https://docs.mcphubx.com/zh/configuration/database-configuration) | PostgreSQL 生产环境配置 |
|
||||||
| [Stream 参数](docs/stream-parameter.md) | 控制流式或 JSON 响应 |
|
|
||||||
| [OAuth](https://docs.mcphubx.com/zh/features/oauth) | OAuth 2.0 客户端和服务端配置 |
|
| [OAuth](https://docs.mcphubx.com/zh/features/oauth) | OAuth 2.0 客户端和服务端配置 |
|
||||||
| [智能路由](https://docs.mcphubx.com/zh/features/smart-routing) | AI 驱动的工具发现 |
|
| [智能路由](https://docs.mcphubx.com/zh/features/smart-routing) | AI 驱动的工具发现 |
|
||||||
| [Docker 部署](https://docs.mcphubx.com/zh/configuration/docker-setup) | Docker 部署指南 |
|
| [Docker 部署](https://docs.mcphubx.com/zh/configuration/docker-setup) | Docker 部署指南 |
|
||||||
|
|||||||
@@ -1,177 +0,0 @@
|
|||||||
# Stream Parameter Support
|
|
||||||
|
|
||||||
MCPHub now supports controlling the response format of MCP requests through a `stream` parameter. This allows you to choose between Server-Sent Events (SSE) streaming responses and direct JSON responses.
|
|
||||||
|
|
||||||
## Overview
|
|
||||||
|
|
||||||
By default, MCP requests use SSE streaming for real-time communication. However, some use cases benefit from receiving complete JSON responses instead of streams. The `stream` parameter provides this flexibility.
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
### Query Parameter
|
|
||||||
|
|
||||||
You can control streaming behavior by adding a `stream` query parameter to your MCP POST requests:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Disable streaming (receive JSON response)
|
|
||||||
POST /mcp?stream=false
|
|
||||||
|
|
||||||
# Enable streaming (SSE response) - Default behavior
|
|
||||||
POST /mcp?stream=true
|
|
||||||
```
|
|
||||||
|
|
||||||
### Request Body Parameter
|
|
||||||
|
|
||||||
Alternatively, you can include the `stream` parameter in your request body:
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"method": "initialize",
|
|
||||||
"params": {
|
|
||||||
"protocolVersion": "2025-03-26",
|
|
||||||
"capabilities": {},
|
|
||||||
"clientInfo": {
|
|
||||||
"name": "MyClient",
|
|
||||||
"version": "1.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stream": false,
|
|
||||||
"jsonrpc": "2.0",
|
|
||||||
"id": 1
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
**Note:** The request body parameter takes priority over the query parameter if both are specified.
|
|
||||||
|
|
||||||
## Examples
|
|
||||||
|
|
||||||
### Example 1: Non-Streaming Request
|
|
||||||
|
|
||||||
```bash
|
|
||||||
curl -X POST "http://localhost:3000/mcp?stream=false" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-H "Accept: application/json, text/event-stream" \
|
|
||||||
-d '{
|
|
||||||
"method": "initialize",
|
|
||||||
"params": {
|
|
||||||
"protocolVersion": "2025-03-26",
|
|
||||||
"capabilities": {},
|
|
||||||
"clientInfo": {
|
|
||||||
"name": "TestClient",
|
|
||||||
"version": "1.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"jsonrpc": "2.0",
|
|
||||||
"id": 1
|
|
||||||
}'
|
|
||||||
```
|
|
||||||
|
|
||||||
Response (JSON):
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"jsonrpc": "2.0",
|
|
||||||
"result": {
|
|
||||||
"protocolVersion": "2025-03-26",
|
|
||||||
"capabilities": {
|
|
||||||
"tools": {},
|
|
||||||
"prompts": {}
|
|
||||||
},
|
|
||||||
"serverInfo": {
|
|
||||||
"name": "MCPHub",
|
|
||||||
"version": "1.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"id": 1
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
### Example 2: Streaming Request (Default)
|
|
||||||
|
|
||||||
```bash
|
|
||||||
curl -X POST "http://localhost:3000/mcp" \
|
|
||||||
-H "Content-Type: application/json" \
|
|
||||||
-H "Accept: application/json, text/event-stream" \
|
|
||||||
-d '{
|
|
||||||
"method": "initialize",
|
|
||||||
"params": {
|
|
||||||
"protocolVersion": "2025-03-26",
|
|
||||||
"capabilities": {},
|
|
||||||
"clientInfo": {
|
|
||||||
"name": "TestClient",
|
|
||||||
"version": "1.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"jsonrpc": "2.0",
|
|
||||||
"id": 1
|
|
||||||
}'
|
|
||||||
```
|
|
||||||
|
|
||||||
Response (SSE Stream):
|
|
||||||
```
|
|
||||||
HTTP/1.1 200 OK
|
|
||||||
Content-Type: text/event-stream
|
|
||||||
mcp-session-id: 550e8400-e29b-41d4-a716-446655440000
|
|
||||||
|
|
||||||
data: {"jsonrpc":"2.0","result":{...},"id":1}
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
## Use Cases
|
|
||||||
|
|
||||||
### When to Use `stream: false`
|
|
||||||
|
|
||||||
- **Simple Request-Response**: When you only need a single response without ongoing communication
|
|
||||||
- **Debugging**: Easier to inspect complete JSON responses in tools like Postman or curl
|
|
||||||
- **Testing**: Simpler to test and validate responses in automated tests
|
|
||||||
- **Stateless Operations**: When you don't need to maintain session state between requests
|
|
||||||
- **API Integration**: When integrating with systems that expect standard JSON responses
|
|
||||||
|
|
||||||
### When to Use `stream: true` (Default)
|
|
||||||
|
|
||||||
- **Real-time Communication**: When you need continuous updates or notifications
|
|
||||||
- **Long-running Operations**: For operations that may take time and send progress updates
|
|
||||||
- **Event-driven**: When your application architecture is event-based
|
|
||||||
- **MCP Protocol Compliance**: For full MCP protocol compatibility with streaming support
|
|
||||||
|
|
||||||
## Technical Details
|
|
||||||
|
|
||||||
### Implementation
|
|
||||||
|
|
||||||
The `stream` parameter controls the `enableJsonResponse` option of the underlying `StreamableHTTPServerTransport`:
|
|
||||||
|
|
||||||
- `stream: true` → `enableJsonResponse: false` → SSE streaming response
|
|
||||||
- `stream: false` → `enableJsonResponse: true` → Direct JSON response
|
|
||||||
|
|
||||||
### Backward Compatibility
|
|
||||||
|
|
||||||
The default behavior remains SSE streaming (`stream: true`) to maintain backward compatibility with existing clients. If the `stream` parameter is not specified, MCPHub will use streaming by default.
|
|
||||||
|
|
||||||
### Session Management
|
|
||||||
|
|
||||||
The stream parameter affects how sessions are created:
|
|
||||||
|
|
||||||
- **Streaming sessions**: Use SSE transport with session management
|
|
||||||
- **Non-streaming sessions**: Use direct JSON responses with session management
|
|
||||||
|
|
||||||
Both modes support session IDs and can be used with the MCP session management features.
|
|
||||||
|
|
||||||
## Group and Server Routes
|
|
||||||
|
|
||||||
The stream parameter works with all MCP route variants:
|
|
||||||
|
|
||||||
- Global route: `/mcp?stream=false`
|
|
||||||
- Group route: `/mcp/{group}?stream=false`
|
|
||||||
- Server route: `/mcp/{server}?stream=false`
|
|
||||||
- Smart routing: `/mcp/$smart?stream=false`
|
|
||||||
|
|
||||||
## Limitations
|
|
||||||
|
|
||||||
1. The `stream` parameter only affects POST requests to the `/mcp` endpoint
|
|
||||||
2. SSE GET requests for retrieving streams are not affected by this parameter
|
|
||||||
3. Session rebuild operations inherit the stream setting from the original request
|
|
||||||
|
|
||||||
## See Also
|
|
||||||
|
|
||||||
- [MCP Protocol Specification](https://spec.modelcontextprotocol.io/)
|
|
||||||
- [API Reference](https://docs.mcphubx.com/api-reference)
|
|
||||||
- [Configuration Guide](https://docs.mcphubx.com/configuration/mcp-settings)
|
|
||||||
@@ -18,7 +18,17 @@ const EditServerForm = ({ server, onEdit, onCancel }: EditServerFormProps) => {
|
|||||||
try {
|
try {
|
||||||
setError(null);
|
setError(null);
|
||||||
const encodedServerName = encodeURIComponent(server.name);
|
const encodedServerName = encodeURIComponent(server.name);
|
||||||
const result = await apiPut(`/servers/${encodedServerName}`, payload);
|
|
||||||
|
// Check if name is being changed
|
||||||
|
const isRenaming = payload.name && payload.name !== server.name;
|
||||||
|
|
||||||
|
// Build the request body
|
||||||
|
const requestBody = {
|
||||||
|
config: payload.config,
|
||||||
|
...(isRenaming ? { newName: payload.name } : {}),
|
||||||
|
};
|
||||||
|
|
||||||
|
const result = await apiPut(`/servers/${encodedServerName}`, requestBody);
|
||||||
|
|
||||||
if (!result.success) {
|
if (!result.success) {
|
||||||
// Use specific error message from the response if available
|
// Use specific error message from the response if available
|
||||||
|
|||||||
@@ -429,7 +429,6 @@ const ServerForm = ({
|
|||||||
className="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline form-input"
|
className="shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline form-input"
|
||||||
placeholder="e.g.: time-mcp"
|
placeholder="e.g.: time-mcp"
|
||||||
required
|
required
|
||||||
disabled={isEdit}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ interface BearerKeyRowProps {
|
|||||||
name: string;
|
name: string;
|
||||||
token: string;
|
token: string;
|
||||||
enabled: boolean;
|
enabled: boolean;
|
||||||
accessType: 'all' | 'groups' | 'servers';
|
accessType: 'all' | 'groups' | 'servers' | 'custom';
|
||||||
allowedGroups: string;
|
allowedGroups: string;
|
||||||
allowedServers: string;
|
allowedServers: string;
|
||||||
},
|
},
|
||||||
@@ -47,7 +47,7 @@ const BearerKeyRow: React.FC<BearerKeyRowProps> = ({
|
|||||||
const [name, setName] = useState(keyData.name);
|
const [name, setName] = useState(keyData.name);
|
||||||
const [token, setToken] = useState(keyData.token);
|
const [token, setToken] = useState(keyData.token);
|
||||||
const [enabled, setEnabled] = useState<boolean>(keyData.enabled);
|
const [enabled, setEnabled] = useState<boolean>(keyData.enabled);
|
||||||
const [accessType, setAccessType] = useState<'all' | 'groups' | 'servers'>(
|
const [accessType, setAccessType] = useState<'all' | 'groups' | 'servers' | 'custom'>(
|
||||||
keyData.accessType || 'all',
|
keyData.accessType || 'all',
|
||||||
);
|
);
|
||||||
const [selectedGroups, setSelectedGroups] = useState<string[]>(keyData.allowedGroups || []);
|
const [selectedGroups, setSelectedGroups] = useState<string[]>(keyData.allowedGroups || []);
|
||||||
@@ -105,6 +105,13 @@ const BearerKeyRow: React.FC<BearerKeyRowProps> = ({
|
|||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (accessType === 'custom' && selectedGroups.length === 0 && selectedServers.length === 0) {
|
||||||
|
showToast(
|
||||||
|
t('settings.selectAtLeastOneGroupOrServer') || 'Please select at least one group or server',
|
||||||
|
'error',
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
setSaving(true);
|
setSaving(true);
|
||||||
try {
|
try {
|
||||||
@@ -135,6 +142,31 @@ const BearerKeyRow: React.FC<BearerKeyRowProps> = ({
|
|||||||
};
|
};
|
||||||
|
|
||||||
const isGroupsMode = accessType === 'groups';
|
const isGroupsMode = accessType === 'groups';
|
||||||
|
const isCustomMode = accessType === 'custom';
|
||||||
|
|
||||||
|
// Helper function to format access type display text
|
||||||
|
const formatAccessTypeDisplay = (key: BearerKey): string => {
|
||||||
|
if (key.accessType === 'all') {
|
||||||
|
return t('settings.bearerKeyAccessAll') || 'All Resources';
|
||||||
|
}
|
||||||
|
if (key.accessType === 'groups') {
|
||||||
|
return `${t('settings.bearerKeyAccessGroups') || 'Groups'}: ${key.allowedGroups}`;
|
||||||
|
}
|
||||||
|
if (key.accessType === 'servers') {
|
||||||
|
return `${t('settings.bearerKeyAccessServers') || 'Servers'}: ${key.allowedServers}`;
|
||||||
|
}
|
||||||
|
if (key.accessType === 'custom') {
|
||||||
|
const parts: string[] = [];
|
||||||
|
if (key.allowedGroups && key.allowedGroups.length > 0) {
|
||||||
|
parts.push(`${t('settings.bearerKeyAccessGroups') || 'Groups'}: ${key.allowedGroups}`);
|
||||||
|
}
|
||||||
|
if (key.allowedServers && key.allowedServers.length > 0) {
|
||||||
|
parts.push(`${t('settings.bearerKeyAccessServers') || 'Servers'}: ${key.allowedServers}`);
|
||||||
|
}
|
||||||
|
return `${t('settings.bearerKeyAccessCustom') || 'Custom'}: ${parts.join('; ')}`;
|
||||||
|
}
|
||||||
|
return '';
|
||||||
|
};
|
||||||
|
|
||||||
if (isEditing) {
|
if (isEditing) {
|
||||||
return (
|
return (
|
||||||
@@ -194,7 +226,9 @@ const BearerKeyRow: React.FC<BearerKeyRowProps> = ({
|
|||||||
<select
|
<select
|
||||||
className="block w-full py-2 px-3 border border-gray-300 bg-white rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm form-select transition-shadow duration-200"
|
className="block w-full py-2 px-3 border border-gray-300 bg-white rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm form-select transition-shadow duration-200"
|
||||||
value={accessType}
|
value={accessType}
|
||||||
onChange={(e) => setAccessType(e.target.value as 'all' | 'groups' | 'servers')}
|
onChange={(e) =>
|
||||||
|
setAccessType(e.target.value as 'all' | 'groups' | 'servers' | 'custom')
|
||||||
|
}
|
||||||
disabled={loading}
|
disabled={loading}
|
||||||
>
|
>
|
||||||
<option value="all">{t('settings.bearerKeyAccessAll') || 'All Resources'}</option>
|
<option value="all">{t('settings.bearerKeyAccessAll') || 'All Resources'}</option>
|
||||||
@@ -204,29 +238,65 @@ const BearerKeyRow: React.FC<BearerKeyRowProps> = ({
|
|||||||
<option value="servers">
|
<option value="servers">
|
||||||
{t('settings.bearerKeyAccessServers') || 'Specific Servers'}
|
{t('settings.bearerKeyAccessServers') || 'Specific Servers'}
|
||||||
</option>
|
</option>
|
||||||
|
<option value="custom">
|
||||||
|
{t('settings.bearerKeyAccessCustom') || 'Custom (Groups & Servers)'}
|
||||||
|
</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex-1 min-w-[200px]">
|
{/* Show single selector for groups or servers mode */}
|
||||||
<label
|
{!isCustomMode && (
|
||||||
className={`block text-sm font-medium mb-1 ${accessType === 'all' ? 'text-gray-400' : 'text-gray-700'}`}
|
<div className="flex-1 min-w-[200px]">
|
||||||
>
|
<label
|
||||||
{isGroupsMode
|
className={`block text-sm font-medium mb-1 ${accessType === 'all' ? 'text-gray-400' : 'text-gray-700'}`}
|
||||||
? t('settings.bearerKeyAllowedGroups') || 'Allowed groups'
|
>
|
||||||
: t('settings.bearerKeyAllowedServers') || 'Allowed servers'}
|
{isGroupsMode
|
||||||
</label>
|
? t('settings.bearerKeyAllowedGroups') || 'Allowed groups'
|
||||||
<MultiSelect
|
: t('settings.bearerKeyAllowedServers') || 'Allowed servers'}
|
||||||
options={isGroupsMode ? availableGroups : availableServers}
|
</label>
|
||||||
selected={isGroupsMode ? selectedGroups : selectedServers}
|
<MultiSelect
|
||||||
onChange={isGroupsMode ? setSelectedGroups : setSelectedServers}
|
options={isGroupsMode ? availableGroups : availableServers}
|
||||||
placeholder={
|
selected={isGroupsMode ? selectedGroups : selectedServers}
|
||||||
isGroupsMode
|
onChange={isGroupsMode ? setSelectedGroups : setSelectedServers}
|
||||||
? t('settings.selectGroups') || 'Select groups...'
|
placeholder={
|
||||||
: t('settings.selectServers') || 'Select servers...'
|
isGroupsMode
|
||||||
}
|
? t('settings.selectGroups') || 'Select groups...'
|
||||||
disabled={loading || accessType === 'all'}
|
: t('settings.selectServers') || 'Select servers...'
|
||||||
/>
|
}
|
||||||
</div>
|
disabled={loading || accessType === 'all'}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* Show both selectors for custom mode */}
|
||||||
|
{isCustomMode && (
|
||||||
|
<>
|
||||||
|
<div className="flex-1 min-w-[200px]">
|
||||||
|
<label className="block text-sm font-medium text-gray-700 mb-1">
|
||||||
|
{t('settings.bearerKeyAllowedGroups') || 'Allowed groups'}
|
||||||
|
</label>
|
||||||
|
<MultiSelect
|
||||||
|
options={availableGroups}
|
||||||
|
selected={selectedGroups}
|
||||||
|
onChange={setSelectedGroups}
|
||||||
|
placeholder={t('settings.selectGroups') || 'Select groups...'}
|
||||||
|
disabled={loading}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="flex-1 min-w-[200px]">
|
||||||
|
<label className="block text-sm font-medium text-gray-700 mb-1">
|
||||||
|
{t('settings.bearerKeyAllowedServers') || 'Allowed servers'}
|
||||||
|
</label>
|
||||||
|
<MultiSelect
|
||||||
|
options={availableServers}
|
||||||
|
selected={selectedServers}
|
||||||
|
onChange={setSelectedServers}
|
||||||
|
placeholder={t('settings.selectServers') || 'Select servers...'}
|
||||||
|
disabled={loading}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
|
||||||
<div className="flex justify-end gap-2">
|
<div className="flex justify-end gap-2">
|
||||||
<button
|
<button
|
||||||
@@ -281,11 +351,7 @@ const BearerKeyRow: React.FC<BearerKeyRowProps> = ({
|
|||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
|
<td className="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
|
||||||
{keyData.accessType === 'all'
|
{formatAccessTypeDisplay(keyData)}
|
||||||
? t('settings.bearerKeyAccessAll') || 'All Resources'
|
|
||||||
: keyData.accessType === 'groups'
|
|
||||||
? `${t('settings.bearerKeyAccessGroups') || 'Groups'}: ${keyData.allowedGroups}`
|
|
||||||
: `${t('settings.bearerKeyAccessServers') || 'Servers'}: ${keyData.allowedServers}`}
|
|
||||||
</td>
|
</td>
|
||||||
<td className="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
|
<td className="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
|
||||||
<button
|
<button
|
||||||
@@ -737,7 +803,7 @@ const SettingsPage: React.FC = () => {
|
|||||||
name: string;
|
name: string;
|
||||||
token: string;
|
token: string;
|
||||||
enabled: boolean;
|
enabled: boolean;
|
||||||
accessType: 'all' | 'groups' | 'servers';
|
accessType: 'all' | 'groups' | 'servers' | 'custom';
|
||||||
allowedGroups: string;
|
allowedGroups: string;
|
||||||
allowedServers: string;
|
allowedServers: string;
|
||||||
}>({
|
}>({
|
||||||
@@ -765,10 +831,10 @@ const SettingsPage: React.FC = () => {
|
|||||||
|
|
||||||
// Reset selected arrays when accessType changes
|
// Reset selected arrays when accessType changes
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (newBearerKey.accessType !== 'groups') {
|
if (newBearerKey.accessType !== 'groups' && newBearerKey.accessType !== 'custom') {
|
||||||
setNewSelectedGroups([]);
|
setNewSelectedGroups([]);
|
||||||
}
|
}
|
||||||
if (newBearerKey.accessType !== 'servers') {
|
if (newBearerKey.accessType !== 'servers' && newBearerKey.accessType !== 'custom') {
|
||||||
setNewSelectedServers([]);
|
setNewSelectedServers([]);
|
||||||
}
|
}
|
||||||
}, [newBearerKey.accessType]);
|
}, [newBearerKey.accessType]);
|
||||||
@@ -866,6 +932,17 @@ const SettingsPage: React.FC = () => {
|
|||||||
);
|
);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (
|
||||||
|
newBearerKey.accessType === 'custom' &&
|
||||||
|
newSelectedGroups.length === 0 &&
|
||||||
|
newSelectedServers.length === 0
|
||||||
|
) {
|
||||||
|
showToast(
|
||||||
|
t('settings.selectAtLeastOneGroupOrServer') || 'Please select at least one group or server',
|
||||||
|
'error',
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
await createBearerKey({
|
await createBearerKey({
|
||||||
name: newBearerKey.name,
|
name: newBearerKey.name,
|
||||||
@@ -873,11 +950,13 @@ const SettingsPage: React.FC = () => {
|
|||||||
enabled: newBearerKey.enabled,
|
enabled: newBearerKey.enabled,
|
||||||
accessType: newBearerKey.accessType,
|
accessType: newBearerKey.accessType,
|
||||||
allowedGroups:
|
allowedGroups:
|
||||||
newBearerKey.accessType === 'groups' && newSelectedGroups.length > 0
|
(newBearerKey.accessType === 'groups' || newBearerKey.accessType === 'custom') &&
|
||||||
|
newSelectedGroups.length > 0
|
||||||
? newSelectedGroups
|
? newSelectedGroups
|
||||||
: undefined,
|
: undefined,
|
||||||
allowedServers:
|
allowedServers:
|
||||||
newBearerKey.accessType === 'servers' && newSelectedServers.length > 0
|
(newBearerKey.accessType === 'servers' || newBearerKey.accessType === 'custom') &&
|
||||||
|
newSelectedServers.length > 0
|
||||||
? newSelectedServers
|
? newSelectedServers
|
||||||
: undefined,
|
: undefined,
|
||||||
} as any);
|
} as any);
|
||||||
@@ -901,7 +980,7 @@ const SettingsPage: React.FC = () => {
|
|||||||
name: string;
|
name: string;
|
||||||
token: string;
|
token: string;
|
||||||
enabled: boolean;
|
enabled: boolean;
|
||||||
accessType: 'all' | 'groups' | 'servers';
|
accessType: 'all' | 'groups' | 'servers' | 'custom';
|
||||||
allowedGroups: string;
|
allowedGroups: string;
|
||||||
allowedServers: string;
|
allowedServers: string;
|
||||||
},
|
},
|
||||||
@@ -1128,7 +1207,7 @@ const SettingsPage: React.FC = () => {
|
|||||||
onChange={(e) =>
|
onChange={(e) =>
|
||||||
setNewBearerKey((prev) => ({
|
setNewBearerKey((prev) => ({
|
||||||
...prev,
|
...prev,
|
||||||
accessType: e.target.value as 'all' | 'groups' | 'servers',
|
accessType: e.target.value as 'all' | 'groups' | 'servers' | 'custom',
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
disabled={loading}
|
disabled={loading}
|
||||||
@@ -1142,41 +1221,75 @@ const SettingsPage: React.FC = () => {
|
|||||||
<option value="servers">
|
<option value="servers">
|
||||||
{t('settings.bearerKeyAccessServers') || 'Specific Servers'}
|
{t('settings.bearerKeyAccessServers') || 'Specific Servers'}
|
||||||
</option>
|
</option>
|
||||||
|
<option value="custom">
|
||||||
|
{t('settings.bearerKeyAccessCustom') || 'Custom (Groups & Servers)'}
|
||||||
|
</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="flex-1 min-w-[200px]">
|
{newBearerKey.accessType !== 'custom' && (
|
||||||
<label
|
<div className="flex-1 min-w-[200px]">
|
||||||
className={`block text-sm font-medium mb-1 ${newBearerKey.accessType === 'all' ? 'text-gray-400' : 'text-gray-700'}`}
|
<label
|
||||||
>
|
className={`block text-sm font-medium mb-1 ${newBearerKey.accessType === 'all' ? 'text-gray-400' : 'text-gray-700'}`}
|
||||||
{newBearerKey.accessType === 'groups'
|
>
|
||||||
? t('settings.bearerKeyAllowedGroups') || 'Allowed groups'
|
{newBearerKey.accessType === 'groups'
|
||||||
: t('settings.bearerKeyAllowedServers') || 'Allowed servers'}
|
? t('settings.bearerKeyAllowedGroups') || 'Allowed groups'
|
||||||
</label>
|
: t('settings.bearerKeyAllowedServers') || 'Allowed servers'}
|
||||||
<MultiSelect
|
</label>
|
||||||
options={
|
<MultiSelect
|
||||||
newBearerKey.accessType === 'groups'
|
options={
|
||||||
? availableGroups
|
newBearerKey.accessType === 'groups'
|
||||||
: availableServers
|
? availableGroups
|
||||||
}
|
: availableServers
|
||||||
selected={
|
}
|
||||||
newBearerKey.accessType === 'groups'
|
selected={
|
||||||
? newSelectedGroups
|
newBearerKey.accessType === 'groups'
|
||||||
: newSelectedServers
|
? newSelectedGroups
|
||||||
}
|
: newSelectedServers
|
||||||
onChange={
|
}
|
||||||
newBearerKey.accessType === 'groups'
|
onChange={
|
||||||
? setNewSelectedGroups
|
newBearerKey.accessType === 'groups'
|
||||||
: setNewSelectedServers
|
? setNewSelectedGroups
|
||||||
}
|
: setNewSelectedServers
|
||||||
placeholder={
|
}
|
||||||
newBearerKey.accessType === 'groups'
|
placeholder={
|
||||||
? t('settings.selectGroups') || 'Select groups...'
|
newBearerKey.accessType === 'groups'
|
||||||
: t('settings.selectServers') || 'Select servers...'
|
? t('settings.selectGroups') || 'Select groups...'
|
||||||
}
|
: t('settings.selectServers') || 'Select servers...'
|
||||||
disabled={loading || newBearerKey.accessType === 'all'}
|
}
|
||||||
/>
|
disabled={loading || newBearerKey.accessType === 'all'}
|
||||||
</div>
|
/>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{newBearerKey.accessType === 'custom' && (
|
||||||
|
<>
|
||||||
|
<div className="flex-1 min-w-[200px]">
|
||||||
|
<label className="block text-sm font-medium text-gray-700 mb-1">
|
||||||
|
{t('settings.bearerKeyAllowedGroups') || 'Allowed groups'}
|
||||||
|
</label>
|
||||||
|
<MultiSelect
|
||||||
|
options={availableGroups}
|
||||||
|
selected={newSelectedGroups}
|
||||||
|
onChange={setNewSelectedGroups}
|
||||||
|
placeholder={t('settings.selectGroups') || 'Select groups...'}
|
||||||
|
disabled={loading}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="flex-1 min-w-[200px]">
|
||||||
|
<label className="block text-sm font-medium text-gray-700 mb-1">
|
||||||
|
{t('settings.bearerKeyAllowedServers') || 'Allowed servers'}
|
||||||
|
</label>
|
||||||
|
<MultiSelect
|
||||||
|
options={availableServers}
|
||||||
|
selected={newSelectedServers}
|
||||||
|
onChange={setNewSelectedServers}
|
||||||
|
placeholder={t('settings.selectServers') || 'Select servers...'}
|
||||||
|
disabled={loading}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
|
||||||
<div className="flex justify-end gap-2">
|
<div className="flex justify-end gap-2">
|
||||||
<button
|
<button
|
||||||
|
|||||||
@@ -310,7 +310,7 @@ export interface ApiResponse<T = any> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Bearer authentication key configuration (frontend view model)
|
// Bearer authentication key configuration (frontend view model)
|
||||||
export type BearerKeyAccessType = 'all' | 'groups' | 'servers';
|
export type BearerKeyAccessType = 'all' | 'groups' | 'servers' | 'custom';
|
||||||
|
|
||||||
export interface BearerKey {
|
export interface BearerKey {
|
||||||
id: string;
|
id: string;
|
||||||
|
|||||||
@@ -568,6 +568,7 @@
|
|||||||
"bearerKeyAccessAll": "All",
|
"bearerKeyAccessAll": "All",
|
||||||
"bearerKeyAccessGroups": "Groups",
|
"bearerKeyAccessGroups": "Groups",
|
||||||
"bearerKeyAccessServers": "Servers",
|
"bearerKeyAccessServers": "Servers",
|
||||||
|
"bearerKeyAccessCustom": "Custom",
|
||||||
"bearerKeyAllowedGroups": "Allowed groups",
|
"bearerKeyAllowedGroups": "Allowed groups",
|
||||||
"bearerKeyAllowedServers": "Allowed servers",
|
"bearerKeyAllowedServers": "Allowed servers",
|
||||||
"addBearerKey": "Add key",
|
"addBearerKey": "Add key",
|
||||||
|
|||||||
@@ -569,6 +569,7 @@
|
|||||||
"bearerKeyAccessAll": "Toutes",
|
"bearerKeyAccessAll": "Toutes",
|
||||||
"bearerKeyAccessGroups": "Groupes",
|
"bearerKeyAccessGroups": "Groupes",
|
||||||
"bearerKeyAccessServers": "Serveurs",
|
"bearerKeyAccessServers": "Serveurs",
|
||||||
|
"bearerKeyAccessCustom": "Personnalisée",
|
||||||
"bearerKeyAllowedGroups": "Groupes autorisés",
|
"bearerKeyAllowedGroups": "Groupes autorisés",
|
||||||
"bearerKeyAllowedServers": "Serveurs autorisés",
|
"bearerKeyAllowedServers": "Serveurs autorisés",
|
||||||
"addBearerKey": "Ajouter une clé",
|
"addBearerKey": "Ajouter une clé",
|
||||||
|
|||||||
@@ -569,6 +569,7 @@
|
|||||||
"bearerKeyAccessAll": "Tümü",
|
"bearerKeyAccessAll": "Tümü",
|
||||||
"bearerKeyAccessGroups": "Gruplar",
|
"bearerKeyAccessGroups": "Gruplar",
|
||||||
"bearerKeyAccessServers": "Sunucular",
|
"bearerKeyAccessServers": "Sunucular",
|
||||||
|
"bearerKeyAccessCustom": "Özel",
|
||||||
"bearerKeyAllowedGroups": "İzin verilen gruplar",
|
"bearerKeyAllowedGroups": "İzin verilen gruplar",
|
||||||
"bearerKeyAllowedServers": "İzin verilen sunucular",
|
"bearerKeyAllowedServers": "İzin verilen sunucular",
|
||||||
"addBearerKey": "Anahtar ekle",
|
"addBearerKey": "Anahtar ekle",
|
||||||
|
|||||||
@@ -570,6 +570,7 @@
|
|||||||
"bearerKeyAccessAll": "全部",
|
"bearerKeyAccessAll": "全部",
|
||||||
"bearerKeyAccessGroups": "指定分组",
|
"bearerKeyAccessGroups": "指定分组",
|
||||||
"bearerKeyAccessServers": "指定服务器",
|
"bearerKeyAccessServers": "指定服务器",
|
||||||
|
"bearerKeyAccessCustom": "自定义",
|
||||||
"bearerKeyAllowedGroups": "允许访问的分组",
|
"bearerKeyAllowedGroups": "允许访问的分组",
|
||||||
"bearerKeyAllowedServers": "允许访问的服务器",
|
"bearerKeyAllowedServers": "允许访问的服务器",
|
||||||
"addBearerKey": "新增密钥",
|
"addBearerKey": "新增密钥",
|
||||||
|
|||||||
@@ -63,5 +63,6 @@
|
|||||||
"requiresAuthentication": false
|
"requiresAuthentication": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"bearerKeys": []
|
||||||
}
|
}
|
||||||
@@ -57,7 +57,7 @@ export const createBearerKey = async (req: Request, res: Response): Promise<void
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!accessType || !['all', 'groups', 'servers'].includes(accessType)) {
|
if (!accessType || !['all', 'groups', 'servers', 'custom'].includes(accessType)) {
|
||||||
res.status(400).json({ success: false, message: 'Invalid accessType' });
|
res.status(400).json({ success: false, message: 'Invalid accessType' });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -104,7 +104,7 @@ export const updateBearerKey = async (req: Request, res: Response): Promise<void
|
|||||||
if (token !== undefined) updates.token = token;
|
if (token !== undefined) updates.token = token;
|
||||||
if (enabled !== undefined) updates.enabled = enabled;
|
if (enabled !== undefined) updates.enabled = enabled;
|
||||||
if (accessType !== undefined) {
|
if (accessType !== undefined) {
|
||||||
if (!['all', 'groups', 'servers'].includes(accessType)) {
|
if (!['all', 'groups', 'servers', 'custom'].includes(accessType)) {
|
||||||
res.status(400).json({ success: false, message: 'Invalid accessType' });
|
res.status(400).json({ success: false, message: 'Invalid accessType' });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -423,7 +423,7 @@ export const deleteServer = async (req: Request, res: Response): Promise<void> =
|
|||||||
export const updateServer = async (req: Request, res: Response): Promise<void> => {
|
export const updateServer = async (req: Request, res: Response): Promise<void> => {
|
||||||
try {
|
try {
|
||||||
const { name } = req.params;
|
const { name } = req.params;
|
||||||
const { config } = req.body;
|
const { config, newName } = req.body;
|
||||||
if (!name) {
|
if (!name) {
|
||||||
res.status(400).json({
|
res.status(400).json({
|
||||||
success: false,
|
success: false,
|
||||||
@@ -510,12 +510,52 @@ export const updateServer = async (req: Request, res: Response): Promise<void> =
|
|||||||
config.owner = currentUser?.username || 'admin';
|
config.owner = currentUser?.username || 'admin';
|
||||||
}
|
}
|
||||||
|
|
||||||
const result = await addOrUpdateServer(name, config, true); // Allow override for updates
|
// Check if server name is being changed
|
||||||
|
const isRenaming = newName && newName !== name;
|
||||||
|
|
||||||
|
// If renaming, validate the new name and update references
|
||||||
|
if (isRenaming) {
|
||||||
|
const serverDao = getServerDao();
|
||||||
|
|
||||||
|
// Check if new name already exists
|
||||||
|
if (await serverDao.exists(newName)) {
|
||||||
|
res.status(400).json({
|
||||||
|
success: false,
|
||||||
|
message: `Server name '${newName}' already exists`,
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Rename the server
|
||||||
|
const renamed = await serverDao.rename(name, newName);
|
||||||
|
if (!renamed) {
|
||||||
|
res.status(404).json({
|
||||||
|
success: false,
|
||||||
|
message: 'Server not found',
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update references in groups
|
||||||
|
const groupDao = getGroupDao();
|
||||||
|
await groupDao.updateServerName(name, newName);
|
||||||
|
|
||||||
|
// Update references in bearer keys
|
||||||
|
const bearerKeyDao = getBearerKeyDao();
|
||||||
|
await bearerKeyDao.updateServerName(name, newName);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Use the final server name (new name if renaming, otherwise original name)
|
||||||
|
const finalName = isRenaming ? newName : name;
|
||||||
|
|
||||||
|
const result = await addOrUpdateServer(finalName, config, true); // Allow override for updates
|
||||||
if (result.success) {
|
if (result.success) {
|
||||||
notifyToolChanged(name);
|
notifyToolChanged(finalName);
|
||||||
res.json({
|
res.json({
|
||||||
success: true,
|
success: true,
|
||||||
message: 'Server updated successfully',
|
message: isRenaming
|
||||||
|
? `Server renamed and updated successfully`
|
||||||
|
: 'Server updated successfully',
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
res.status(404).json({
|
res.status(404).json({
|
||||||
@@ -524,9 +564,10 @@ export const updateServer = async (req: Request, res: Response): Promise<void> =
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
console.error('Failed to update server:', error);
|
||||||
res.status(500).json({
|
res.status(500).json({
|
||||||
success: false,
|
success: false,
|
||||||
message: 'Internal server error',
|
message: error instanceof Error ? error.message : 'Internal server error',
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -13,6 +13,10 @@ export interface BearerKeyDao {
|
|||||||
create(data: Omit<BearerKey, 'id'>): Promise<BearerKey>;
|
create(data: Omit<BearerKey, 'id'>): Promise<BearerKey>;
|
||||||
update(id: string, data: Partial<Omit<BearerKey, 'id'>>): Promise<BearerKey | null>;
|
update(id: string, data: Partial<Omit<BearerKey, 'id'>>): Promise<BearerKey | null>;
|
||||||
delete(id: string): Promise<boolean>;
|
delete(id: string): Promise<boolean>;
|
||||||
|
/**
|
||||||
|
* Update server name in all bearer keys (when server is renamed)
|
||||||
|
*/
|
||||||
|
updateServerName(oldName: string, newName: string): Promise<number>;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -122,4 +126,34 @@ export class BearerKeyDaoImpl extends JsonFileBaseDao implements BearerKeyDao {
|
|||||||
await this.saveKeys(next);
|
await this.saveKeys(next);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async updateServerName(oldName: string, newName: string): Promise<number> {
|
||||||
|
const keys = await this.loadKeysWithMigration();
|
||||||
|
let updatedCount = 0;
|
||||||
|
|
||||||
|
for (const key of keys) {
|
||||||
|
let updated = false;
|
||||||
|
|
||||||
|
if (key.allowedServers && key.allowedServers.length > 0) {
|
||||||
|
const newServers = key.allowedServers.map((server) => {
|
||||||
|
if (server === oldName) {
|
||||||
|
updated = true;
|
||||||
|
return newName;
|
||||||
|
}
|
||||||
|
return server;
|
||||||
|
});
|
||||||
|
|
||||||
|
if (updated) {
|
||||||
|
key.allowedServers = newServers;
|
||||||
|
updatedCount++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (updatedCount > 0) {
|
||||||
|
await this.saveKeys(keys);
|
||||||
|
}
|
||||||
|
|
||||||
|
return updatedCount;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -74,4 +74,30 @@ export class BearerKeyDaoDbImpl implements BearerKeyDao {
|
|||||||
async delete(id: string): Promise<boolean> {
|
async delete(id: string): Promise<boolean> {
|
||||||
return await this.repository.delete(id);
|
return await this.repository.delete(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async updateServerName(oldName: string, newName: string): Promise<number> {
|
||||||
|
const allKeys = await this.repository.findAll();
|
||||||
|
let updatedCount = 0;
|
||||||
|
|
||||||
|
for (const key of allKeys) {
|
||||||
|
let updated = false;
|
||||||
|
|
||||||
|
if (key.allowedServers && key.allowedServers.length > 0) {
|
||||||
|
const newServers = key.allowedServers.map((server) => {
|
||||||
|
if (server === oldName) {
|
||||||
|
updated = true;
|
||||||
|
return newName;
|
||||||
|
}
|
||||||
|
return server;
|
||||||
|
});
|
||||||
|
|
||||||
|
if (updated) {
|
||||||
|
await this.repository.update(key.id, { allowedServers: newServers });
|
||||||
|
updatedCount++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return updatedCount;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import { UserConfigDao, UserConfigDaoImpl } from './UserConfigDao.js';
|
|||||||
import { OAuthClientDao, OAuthClientDaoImpl } from './OAuthClientDao.js';
|
import { OAuthClientDao, OAuthClientDaoImpl } from './OAuthClientDao.js';
|
||||||
import { OAuthTokenDao, OAuthTokenDaoImpl } from './OAuthTokenDao.js';
|
import { OAuthTokenDao, OAuthTokenDaoImpl } from './OAuthTokenDao.js';
|
||||||
import { BearerKeyDao, BearerKeyDaoImpl } from './BearerKeyDao.js';
|
import { BearerKeyDao, BearerKeyDaoImpl } from './BearerKeyDao.js';
|
||||||
|
import { ToolCallActivityDao } from './ToolCallActivityDao.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* DAO Factory interface for creating DAO instances
|
* DAO Factory interface for creating DAO instances
|
||||||
@@ -19,6 +20,7 @@ export interface DaoFactory {
|
|||||||
getOAuthClientDao(): OAuthClientDao;
|
getOAuthClientDao(): OAuthClientDao;
|
||||||
getOAuthTokenDao(): OAuthTokenDao;
|
getOAuthTokenDao(): OAuthTokenDao;
|
||||||
getBearerKeyDao(): BearerKeyDao;
|
getBearerKeyDao(): BearerKeyDao;
|
||||||
|
getToolCallActivityDao(): ToolCallActivityDao | null; // Only available in DB mode
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -106,6 +108,11 @@ export class JsonFileDaoFactory implements DaoFactory {
|
|||||||
return this.bearerKeyDao;
|
return this.bearerKeyDao;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getToolCallActivityDao(): ToolCallActivityDao | null {
|
||||||
|
// Tool call activity is only available in DB mode
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reset all cached DAO instances (useful for testing)
|
* Reset all cached DAO instances (useful for testing)
|
||||||
*/
|
*/
|
||||||
@@ -194,3 +201,14 @@ export function getOAuthTokenDao(): OAuthTokenDao {
|
|||||||
export function getBearerKeyDao(): BearerKeyDao {
|
export function getBearerKeyDao(): BearerKeyDao {
|
||||||
return getDaoFactory().getBearerKeyDao();
|
return getDaoFactory().getBearerKeyDao();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function getToolCallActivityDao(): ToolCallActivityDao | null {
|
||||||
|
return getDaoFactory().getToolCallActivityDao();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if the application is using database mode
|
||||||
|
*/
|
||||||
|
export function isUsingDatabase(): boolean {
|
||||||
|
return getDaoFactory().getToolCallActivityDao() !== null;
|
||||||
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import {
|
|||||||
OAuthClientDao,
|
OAuthClientDao,
|
||||||
OAuthTokenDao,
|
OAuthTokenDao,
|
||||||
BearerKeyDao,
|
BearerKeyDao,
|
||||||
|
ToolCallActivityDao,
|
||||||
} from './index.js';
|
} from './index.js';
|
||||||
import { UserDaoDbImpl } from './UserDaoDbImpl.js';
|
import { UserDaoDbImpl } from './UserDaoDbImpl.js';
|
||||||
import { ServerDaoDbImpl } from './ServerDaoDbImpl.js';
|
import { ServerDaoDbImpl } from './ServerDaoDbImpl.js';
|
||||||
@@ -17,6 +18,7 @@ import { UserConfigDaoDbImpl } from './UserConfigDaoDbImpl.js';
|
|||||||
import { OAuthClientDaoDbImpl } from './OAuthClientDaoDbImpl.js';
|
import { OAuthClientDaoDbImpl } from './OAuthClientDaoDbImpl.js';
|
||||||
import { OAuthTokenDaoDbImpl } from './OAuthTokenDaoDbImpl.js';
|
import { OAuthTokenDaoDbImpl } from './OAuthTokenDaoDbImpl.js';
|
||||||
import { BearerKeyDaoDbImpl } from './BearerKeyDaoDbImpl.js';
|
import { BearerKeyDaoDbImpl } from './BearerKeyDaoDbImpl.js';
|
||||||
|
import { ToolCallActivityDaoDbImpl } from './ToolCallActivityDao.js';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Database-backed DAO factory implementation
|
* Database-backed DAO factory implementation
|
||||||
@@ -32,6 +34,7 @@ export class DatabaseDaoFactory implements DaoFactory {
|
|||||||
private oauthClientDao: OAuthClientDao | null = null;
|
private oauthClientDao: OAuthClientDao | null = null;
|
||||||
private oauthTokenDao: OAuthTokenDao | null = null;
|
private oauthTokenDao: OAuthTokenDao | null = null;
|
||||||
private bearerKeyDao: BearerKeyDao | null = null;
|
private bearerKeyDao: BearerKeyDao | null = null;
|
||||||
|
private toolCallActivityDao: ToolCallActivityDao | null = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get singleton instance
|
* Get singleton instance
|
||||||
@@ -103,6 +106,13 @@ export class DatabaseDaoFactory implements DaoFactory {
|
|||||||
return this.bearerKeyDao!;
|
return this.bearerKeyDao!;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getToolCallActivityDao(): ToolCallActivityDao | null {
|
||||||
|
if (!this.toolCallActivityDao) {
|
||||||
|
this.toolCallActivityDao = new ToolCallActivityDaoDbImpl();
|
||||||
|
}
|
||||||
|
return this.toolCallActivityDao;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reset all cached DAO instances (useful for testing)
|
* Reset all cached DAO instances (useful for testing)
|
||||||
*/
|
*/
|
||||||
@@ -115,5 +125,6 @@ export class DatabaseDaoFactory implements DaoFactory {
|
|||||||
this.oauthClientDao = null;
|
this.oauthClientDao = null;
|
||||||
this.oauthTokenDao = null;
|
this.oauthTokenDao = null;
|
||||||
this.bearerKeyDao = null;
|
this.bearerKeyDao = null;
|
||||||
|
this.toolCallActivityDao = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,6 +36,11 @@ export interface GroupDao extends BaseDao<IGroup, string> {
|
|||||||
* Find group by name
|
* Find group by name
|
||||||
*/
|
*/
|
||||||
findByName(name: string): Promise<IGroup | null>;
|
findByName(name: string): Promise<IGroup | null>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update server name in all groups (when server is renamed)
|
||||||
|
*/
|
||||||
|
updateServerName(oldName: string, newName: string): Promise<number>;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -218,4 +223,39 @@ export class GroupDaoImpl extends JsonFileBaseDao implements GroupDao {
|
|||||||
const groups = await this.getAll();
|
const groups = await this.getAll();
|
||||||
return groups.find((group) => group.name === name) || null;
|
return groups.find((group) => group.name === name) || null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async updateServerName(oldName: string, newName: string): Promise<number> {
|
||||||
|
const groups = await this.getAll();
|
||||||
|
let updatedCount = 0;
|
||||||
|
|
||||||
|
for (const group of groups) {
|
||||||
|
let updated = false;
|
||||||
|
const newServers = group.servers.map((server) => {
|
||||||
|
if (typeof server === 'string') {
|
||||||
|
if (server === oldName) {
|
||||||
|
updated = true;
|
||||||
|
return newName;
|
||||||
|
}
|
||||||
|
return server;
|
||||||
|
} else {
|
||||||
|
if (server.name === oldName) {
|
||||||
|
updated = true;
|
||||||
|
return { ...server, name: newName };
|
||||||
|
}
|
||||||
|
return server;
|
||||||
|
}
|
||||||
|
}) as IGroup['servers'];
|
||||||
|
|
||||||
|
if (updated) {
|
||||||
|
group.servers = newServers;
|
||||||
|
updatedCount++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (updatedCount > 0) {
|
||||||
|
await this.saveAll(groups);
|
||||||
|
}
|
||||||
|
|
||||||
|
return updatedCount;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -151,4 +151,35 @@ export class GroupDaoDbImpl implements GroupDao {
|
|||||||
owner: group.owner,
|
owner: group.owner,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async updateServerName(oldName: string, newName: string): Promise<number> {
|
||||||
|
const allGroups = await this.repository.findAll();
|
||||||
|
let updatedCount = 0;
|
||||||
|
|
||||||
|
for (const group of allGroups) {
|
||||||
|
let updated = false;
|
||||||
|
const newServers = group.servers.map((server) => {
|
||||||
|
if (typeof server === 'string') {
|
||||||
|
if (server === oldName) {
|
||||||
|
updated = true;
|
||||||
|
return newName;
|
||||||
|
}
|
||||||
|
return server;
|
||||||
|
} else {
|
||||||
|
if (server.name === oldName) {
|
||||||
|
updated = true;
|
||||||
|
return { ...server, name: newName };
|
||||||
|
}
|
||||||
|
return server;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (updated) {
|
||||||
|
await this.update(group.id, { servers: newServers as any });
|
||||||
|
updatedCount++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return updatedCount;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,6 +41,11 @@ export interface ServerDao extends BaseDao<ServerConfigWithName, string> {
|
|||||||
name: string,
|
name: string,
|
||||||
prompts: Record<string, { enabled: boolean; description?: string }>,
|
prompts: Record<string, { enabled: boolean; description?: string }>,
|
||||||
): Promise<boolean>;
|
): Promise<boolean>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Rename a server (change its name/key)
|
||||||
|
*/
|
||||||
|
rename(oldName: string, newName: string): Promise<boolean>;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -95,7 +100,8 @@ export class ServerDaoImpl extends JsonFileBaseDao implements ServerDao {
|
|||||||
return {
|
return {
|
||||||
...existing,
|
...existing,
|
||||||
...updates,
|
...updates,
|
||||||
name: existing.name, // Name should not be updated
|
// Keep the existing name unless explicitly updating via rename
|
||||||
|
name: updates.name ?? existing.name,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -141,9 +147,7 @@ export class ServerDaoImpl extends JsonFileBaseDao implements ServerDao {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Don't allow name changes
|
const updatedServer = this.updateEntity(servers[index], updates);
|
||||||
const { name: _, ...allowedUpdates } = updates;
|
|
||||||
const updatedServer = this.updateEntity(servers[index], allowedUpdates);
|
|
||||||
servers[index] = updatedServer;
|
servers[index] = updatedServer;
|
||||||
|
|
||||||
await this.saveAll(servers);
|
await this.saveAll(servers);
|
||||||
@@ -207,4 +211,22 @@ export class ServerDaoImpl extends JsonFileBaseDao implements ServerDao {
|
|||||||
const result = await this.update(name, { prompts });
|
const result = await this.update(name, { prompts });
|
||||||
return result !== null;
|
return result !== null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async rename(oldName: string, newName: string): Promise<boolean> {
|
||||||
|
const servers = await this.getAll();
|
||||||
|
const index = servers.findIndex((server) => server.name === oldName);
|
||||||
|
|
||||||
|
if (index === -1) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if newName already exists
|
||||||
|
if (servers.find((server) => server.name === newName)) {
|
||||||
|
throw new Error(`Server ${newName} already exists`);
|
||||||
|
}
|
||||||
|
|
||||||
|
servers[index] = { ...servers[index], name: newName };
|
||||||
|
await this.saveAll(servers);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -115,6 +115,15 @@ export class ServerDaoDbImpl implements ServerDao {
|
|||||||
return result !== null;
|
return result !== null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async rename(oldName: string, newName: string): Promise<boolean> {
|
||||||
|
// Check if newName already exists
|
||||||
|
if (await this.repository.exists(newName)) {
|
||||||
|
throw new Error(`Server ${newName} already exists`);
|
||||||
|
}
|
||||||
|
|
||||||
|
return await this.repository.rename(oldName, newName);
|
||||||
|
}
|
||||||
|
|
||||||
private mapToServerConfig(server: {
|
private mapToServerConfig(server: {
|
||||||
name: string;
|
name: string;
|
||||||
type?: string;
|
type?: string;
|
||||||
|
|||||||
186
src/dao/ToolCallActivityDao.ts
Normal file
186
src/dao/ToolCallActivityDao.ts
Normal file
@@ -0,0 +1,186 @@
|
|||||||
|
import {
|
||||||
|
IToolCallActivity,
|
||||||
|
IToolCallActivitySearchParams,
|
||||||
|
IToolCallActivityPage,
|
||||||
|
IToolCallActivityStats,
|
||||||
|
} from '../types/index.js';
|
||||||
|
import { ToolCallActivityRepository } from '../db/repositories/ToolCallActivityRepository.js';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tool Call Activity DAO interface (DB mode only)
|
||||||
|
*/
|
||||||
|
export interface ToolCallActivityDao {
|
||||||
|
/**
|
||||||
|
* Create a new tool call activity
|
||||||
|
*/
|
||||||
|
create(activity: Omit<IToolCallActivity, 'id' | 'createdAt'>): Promise<IToolCallActivity>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find activity by ID
|
||||||
|
*/
|
||||||
|
findById(id: string): Promise<IToolCallActivity | null>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update an existing activity
|
||||||
|
*/
|
||||||
|
update(id: string, updates: Partial<IToolCallActivity>): Promise<IToolCallActivity | null>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete an activity
|
||||||
|
*/
|
||||||
|
delete(id: string): Promise<boolean>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find activities with pagination and filtering
|
||||||
|
*/
|
||||||
|
findWithPagination(
|
||||||
|
page: number,
|
||||||
|
pageSize: number,
|
||||||
|
params?: IToolCallActivitySearchParams,
|
||||||
|
): Promise<IToolCallActivityPage>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get recent activities
|
||||||
|
*/
|
||||||
|
findRecent(limit: number): Promise<IToolCallActivity[]>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get activity statistics
|
||||||
|
*/
|
||||||
|
getStats(): Promise<IToolCallActivityStats>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete old activities (cleanup)
|
||||||
|
*/
|
||||||
|
deleteOlderThan(date: Date): Promise<number>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Count total activities
|
||||||
|
*/
|
||||||
|
count(): Promise<number>;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Database-backed implementation of ToolCallActivityDao
|
||||||
|
*/
|
||||||
|
export class ToolCallActivityDaoDbImpl implements ToolCallActivityDao {
|
||||||
|
private repository: ToolCallActivityRepository;
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
this.repository = new ToolCallActivityRepository();
|
||||||
|
}
|
||||||
|
|
||||||
|
async create(activity: Omit<IToolCallActivity, 'id' | 'createdAt'>): Promise<IToolCallActivity> {
|
||||||
|
const created = await this.repository.create({
|
||||||
|
serverName: activity.serverName,
|
||||||
|
toolName: activity.toolName,
|
||||||
|
keyId: activity.keyId,
|
||||||
|
keyName: activity.keyName,
|
||||||
|
status: activity.status,
|
||||||
|
request: activity.request,
|
||||||
|
response: activity.response,
|
||||||
|
errorMessage: activity.errorMessage,
|
||||||
|
durationMs: activity.durationMs,
|
||||||
|
clientIp: activity.clientIp,
|
||||||
|
sessionId: activity.sessionId,
|
||||||
|
groupName: activity.groupName,
|
||||||
|
});
|
||||||
|
return this.mapToInterface(created);
|
||||||
|
}
|
||||||
|
|
||||||
|
async findById(id: string): Promise<IToolCallActivity | null> {
|
||||||
|
const activity = await this.repository.findById(id);
|
||||||
|
return activity ? this.mapToInterface(activity) : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
async update(
|
||||||
|
id: string,
|
||||||
|
updates: Partial<IToolCallActivity>,
|
||||||
|
): Promise<IToolCallActivity | null> {
|
||||||
|
const updated = await this.repository.update(id, {
|
||||||
|
serverName: updates.serverName,
|
||||||
|
toolName: updates.toolName,
|
||||||
|
keyId: updates.keyId,
|
||||||
|
keyName: updates.keyName,
|
||||||
|
status: updates.status,
|
||||||
|
request: updates.request,
|
||||||
|
response: updates.response,
|
||||||
|
errorMessage: updates.errorMessage,
|
||||||
|
durationMs: updates.durationMs,
|
||||||
|
clientIp: updates.clientIp,
|
||||||
|
sessionId: updates.sessionId,
|
||||||
|
groupName: updates.groupName,
|
||||||
|
});
|
||||||
|
return updated ? this.mapToInterface(updated) : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
async delete(id: string): Promise<boolean> {
|
||||||
|
return await this.repository.delete(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
async findWithPagination(
|
||||||
|
page: number = 1,
|
||||||
|
pageSize: number = 20,
|
||||||
|
params: IToolCallActivitySearchParams = {},
|
||||||
|
): Promise<IToolCallActivityPage> {
|
||||||
|
const result = await this.repository.findWithPagination(page, pageSize, params);
|
||||||
|
return {
|
||||||
|
items: result.items.map((item) => this.mapToInterface(item)),
|
||||||
|
total: result.total,
|
||||||
|
page: result.page,
|
||||||
|
pageSize: result.pageSize,
|
||||||
|
totalPages: result.totalPages,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
async findRecent(limit: number = 10): Promise<IToolCallActivity[]> {
|
||||||
|
const activities = await this.repository.findRecent(limit);
|
||||||
|
return activities.map((activity) => this.mapToInterface(activity));
|
||||||
|
}
|
||||||
|
|
||||||
|
async getStats(): Promise<IToolCallActivityStats> {
|
||||||
|
return await this.repository.getStats();
|
||||||
|
}
|
||||||
|
|
||||||
|
async deleteOlderThan(date: Date): Promise<number> {
|
||||||
|
return await this.repository.deleteOlderThan(date);
|
||||||
|
}
|
||||||
|
|
||||||
|
async count(): Promise<number> {
|
||||||
|
return await this.repository.count();
|
||||||
|
}
|
||||||
|
|
||||||
|
private mapToInterface(activity: {
|
||||||
|
id: string;
|
||||||
|
serverName: string;
|
||||||
|
toolName: string;
|
||||||
|
keyId?: string;
|
||||||
|
keyName?: string;
|
||||||
|
status: 'pending' | 'success' | 'error';
|
||||||
|
request?: string;
|
||||||
|
response?: string;
|
||||||
|
errorMessage?: string;
|
||||||
|
durationMs?: number;
|
||||||
|
clientIp?: string;
|
||||||
|
sessionId?: string;
|
||||||
|
groupName?: string;
|
||||||
|
createdAt: Date;
|
||||||
|
}): IToolCallActivity {
|
||||||
|
return {
|
||||||
|
id: activity.id,
|
||||||
|
serverName: activity.serverName,
|
||||||
|
toolName: activity.toolName,
|
||||||
|
keyId: activity.keyId,
|
||||||
|
keyName: activity.keyName,
|
||||||
|
status: activity.status,
|
||||||
|
request: activity.request,
|
||||||
|
response: activity.response,
|
||||||
|
errorMessage: activity.errorMessage,
|
||||||
|
durationMs: activity.durationMs,
|
||||||
|
clientIp: activity.clientIp,
|
||||||
|
sessionId: activity.sessionId,
|
||||||
|
groupName: activity.groupName,
|
||||||
|
createdAt: activity.createdAt,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -9,6 +9,7 @@ export * from './UserConfigDao.js';
|
|||||||
export * from './OAuthClientDao.js';
|
export * from './OAuthClientDao.js';
|
||||||
export * from './OAuthTokenDao.js';
|
export * from './OAuthTokenDao.js';
|
||||||
export * from './BearerKeyDao.js';
|
export * from './BearerKeyDao.js';
|
||||||
|
export * from './ToolCallActivityDao.js';
|
||||||
|
|
||||||
// Export database implementations
|
// Export database implementations
|
||||||
export * from './UserDaoDbImpl.js';
|
export * from './UserDaoDbImpl.js';
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ export class BearerKey {
|
|||||||
enabled: boolean;
|
enabled: boolean;
|
||||||
|
|
||||||
@Column({ type: 'varchar', length: 20, default: 'all' })
|
@Column({ type: 'varchar', length: 20, default: 'all' })
|
||||||
accessType: 'all' | 'groups' | 'servers';
|
accessType: 'all' | 'groups' | 'servers' | 'custom';
|
||||||
|
|
||||||
@Column({ type: 'simple-json', nullable: true })
|
@Column({ type: 'simple-json', nullable: true })
|
||||||
allowedGroups?: string[];
|
allowedGroups?: string[];
|
||||||
|
|||||||
62
src/db/entities/ToolCallActivity.ts
Normal file
62
src/db/entities/ToolCallActivity.ts
Normal file
@@ -0,0 +1,62 @@
|
|||||||
|
import {
|
||||||
|
Entity,
|
||||||
|
Column,
|
||||||
|
PrimaryGeneratedColumn,
|
||||||
|
CreateDateColumn,
|
||||||
|
Index,
|
||||||
|
} from 'typeorm';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tool call activity entity for logging tool invocations (DB mode only)
|
||||||
|
*/
|
||||||
|
@Entity({ name: 'tool_call_activities' })
|
||||||
|
export class ToolCallActivity {
|
||||||
|
@PrimaryGeneratedColumn('uuid')
|
||||||
|
id: string;
|
||||||
|
|
||||||
|
@Index()
|
||||||
|
@Column({ type: 'varchar', length: 255, name: 'server_name' })
|
||||||
|
serverName: string;
|
||||||
|
|
||||||
|
@Index()
|
||||||
|
@Column({ type: 'varchar', length: 255, name: 'tool_name' })
|
||||||
|
toolName: string;
|
||||||
|
|
||||||
|
@Index()
|
||||||
|
@Column({ type: 'varchar', length: 255, name: 'key_id', nullable: true })
|
||||||
|
keyId?: string;
|
||||||
|
|
||||||
|
@Column({ type: 'varchar', length: 255, name: 'key_name', nullable: true })
|
||||||
|
keyName?: string;
|
||||||
|
|
||||||
|
@Index()
|
||||||
|
@Column({ type: 'varchar', length: 50, default: 'pending' })
|
||||||
|
status: 'pending' | 'success' | 'error';
|
||||||
|
|
||||||
|
@Column({ type: 'text', nullable: true })
|
||||||
|
request?: string;
|
||||||
|
|
||||||
|
@Column({ type: 'text', nullable: true })
|
||||||
|
response?: string;
|
||||||
|
|
||||||
|
@Column({ type: 'text', name: 'error_message', nullable: true })
|
||||||
|
errorMessage?: string;
|
||||||
|
|
||||||
|
@Column({ type: 'int', name: 'duration_ms', nullable: true })
|
||||||
|
durationMs?: number;
|
||||||
|
|
||||||
|
@Column({ type: 'varchar', length: 100, name: 'client_ip', nullable: true })
|
||||||
|
clientIp?: string;
|
||||||
|
|
||||||
|
@Column({ type: 'varchar', length: 255, name: 'session_id', nullable: true })
|
||||||
|
sessionId?: string;
|
||||||
|
|
||||||
|
@Column({ type: 'varchar', length: 255, name: 'group_name', nullable: true })
|
||||||
|
groupName?: string;
|
||||||
|
|
||||||
|
@Index()
|
||||||
|
@CreateDateColumn({ name: 'created_at', type: 'timestamp' })
|
||||||
|
createdAt: Date;
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ToolCallActivity;
|
||||||
@@ -7,6 +7,7 @@ import UserConfig from './UserConfig.js';
|
|||||||
import OAuthClient from './OAuthClient.js';
|
import OAuthClient from './OAuthClient.js';
|
||||||
import OAuthToken from './OAuthToken.js';
|
import OAuthToken from './OAuthToken.js';
|
||||||
import BearerKey from './BearerKey.js';
|
import BearerKey from './BearerKey.js';
|
||||||
|
import ToolCallActivity from './ToolCallActivity.js';
|
||||||
|
|
||||||
// Export all entities
|
// Export all entities
|
||||||
export default [
|
export default [
|
||||||
@@ -19,6 +20,7 @@ export default [
|
|||||||
OAuthClient,
|
OAuthClient,
|
||||||
OAuthToken,
|
OAuthToken,
|
||||||
BearerKey,
|
BearerKey,
|
||||||
|
ToolCallActivity,
|
||||||
];
|
];
|
||||||
|
|
||||||
// Export individual entities for direct use
|
// Export individual entities for direct use
|
||||||
@@ -32,4 +34,5 @@ export {
|
|||||||
OAuthClient,
|
OAuthClient,
|
||||||
OAuthToken,
|
OAuthToken,
|
||||||
BearerKey,
|
BearerKey,
|
||||||
|
ToolCallActivity,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -89,6 +89,19 @@ export class ServerRepository {
|
|||||||
async setEnabled(name: string, enabled: boolean): Promise<Server | null> {
|
async setEnabled(name: string, enabled: boolean): Promise<Server | null> {
|
||||||
return await this.update(name, { enabled });
|
return await this.update(name, { enabled });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Rename a server
|
||||||
|
*/
|
||||||
|
async rename(oldName: string, newName: string): Promise<boolean> {
|
||||||
|
const server = await this.findByName(oldName);
|
||||||
|
if (!server) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
server.name = newName;
|
||||||
|
await this.repository.save(server);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ServerRepository;
|
export default ServerRepository;
|
||||||
|
|||||||
200
src/db/repositories/ToolCallActivityRepository.ts
Normal file
200
src/db/repositories/ToolCallActivityRepository.ts
Normal file
@@ -0,0 +1,200 @@
|
|||||||
|
import { Repository, FindOptionsWhere, ILike, Between } from 'typeorm';
|
||||||
|
import { ToolCallActivity } from '../entities/ToolCallActivity.js';
|
||||||
|
import { getAppDataSource } from '../connection.js';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Search parameters for filtering tool call activities
|
||||||
|
*/
|
||||||
|
export interface ToolCallActivitySearchParams {
|
||||||
|
serverName?: string;
|
||||||
|
toolName?: string;
|
||||||
|
keyId?: string;
|
||||||
|
status?: 'pending' | 'success' | 'error';
|
||||||
|
groupName?: string;
|
||||||
|
startDate?: Date;
|
||||||
|
endDate?: Date;
|
||||||
|
searchQuery?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Pagination result for tool call activities
|
||||||
|
*/
|
||||||
|
export interface ToolCallActivityPage {
|
||||||
|
items: ToolCallActivity[];
|
||||||
|
total: number;
|
||||||
|
page: number;
|
||||||
|
pageSize: number;
|
||||||
|
totalPages: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Repository for ToolCallActivity entity
|
||||||
|
*/
|
||||||
|
export class ToolCallActivityRepository {
|
||||||
|
private repository: Repository<ToolCallActivity>;
|
||||||
|
|
||||||
|
constructor() {
|
||||||
|
this.repository = getAppDataSource().getRepository(ToolCallActivity);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new tool call activity
|
||||||
|
*/
|
||||||
|
async create(
|
||||||
|
activity: Omit<ToolCallActivity, 'id' | 'createdAt'>,
|
||||||
|
): Promise<ToolCallActivity> {
|
||||||
|
const newActivity = this.repository.create(activity);
|
||||||
|
return await this.repository.save(newActivity);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find activity by ID
|
||||||
|
*/
|
||||||
|
async findById(id: string): Promise<ToolCallActivity | null> {
|
||||||
|
return await this.repository.findOne({ where: { id } });
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update an existing activity
|
||||||
|
*/
|
||||||
|
async update(
|
||||||
|
id: string,
|
||||||
|
updates: Partial<ToolCallActivity>,
|
||||||
|
): Promise<ToolCallActivity | null> {
|
||||||
|
const activity = await this.findById(id);
|
||||||
|
if (!activity) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
const updated = this.repository.merge(activity, updates);
|
||||||
|
return await this.repository.save(updated);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete an activity
|
||||||
|
*/
|
||||||
|
async delete(id: string): Promise<boolean> {
|
||||||
|
const result = await this.repository.delete({ id });
|
||||||
|
return (result.affected ?? 0) > 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Find activities with pagination and filtering
|
||||||
|
*/
|
||||||
|
async findWithPagination(
|
||||||
|
page: number = 1,
|
||||||
|
pageSize: number = 20,
|
||||||
|
params: ToolCallActivitySearchParams = {},
|
||||||
|
): Promise<ToolCallActivityPage> {
|
||||||
|
const where: FindOptionsWhere<ToolCallActivity>[] = [];
|
||||||
|
const baseWhere: FindOptionsWhere<ToolCallActivity> = {};
|
||||||
|
|
||||||
|
// Add filters
|
||||||
|
if (params.serverName) {
|
||||||
|
baseWhere.serverName = params.serverName;
|
||||||
|
}
|
||||||
|
if (params.toolName) {
|
||||||
|
baseWhere.toolName = params.toolName;
|
||||||
|
}
|
||||||
|
if (params.keyId) {
|
||||||
|
baseWhere.keyId = params.keyId;
|
||||||
|
}
|
||||||
|
if (params.status) {
|
||||||
|
baseWhere.status = params.status;
|
||||||
|
}
|
||||||
|
if (params.groupName) {
|
||||||
|
baseWhere.groupName = params.groupName;
|
||||||
|
}
|
||||||
|
if (params.startDate && params.endDate) {
|
||||||
|
baseWhere.createdAt = Between(params.startDate, params.endDate);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Handle search query - search across multiple fields
|
||||||
|
if (params.searchQuery) {
|
||||||
|
const searchPattern = `%${params.searchQuery}%`;
|
||||||
|
where.push(
|
||||||
|
{ ...baseWhere, serverName: ILike(searchPattern) },
|
||||||
|
{ ...baseWhere, toolName: ILike(searchPattern) },
|
||||||
|
{ ...baseWhere, keyName: ILike(searchPattern) },
|
||||||
|
{ ...baseWhere, groupName: ILike(searchPattern) },
|
||||||
|
);
|
||||||
|
} else {
|
||||||
|
where.push(baseWhere);
|
||||||
|
}
|
||||||
|
|
||||||
|
const [items, total] = await this.repository.findAndCount({
|
||||||
|
where: where.length > 0 ? where : undefined,
|
||||||
|
order: { createdAt: 'DESC' },
|
||||||
|
skip: (page - 1) * pageSize,
|
||||||
|
take: pageSize,
|
||||||
|
});
|
||||||
|
|
||||||
|
return {
|
||||||
|
items,
|
||||||
|
total,
|
||||||
|
page,
|
||||||
|
pageSize,
|
||||||
|
totalPages: Math.ceil(total / pageSize),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get recent activities
|
||||||
|
*/
|
||||||
|
async findRecent(limit: number = 10): Promise<ToolCallActivity[]> {
|
||||||
|
return await this.repository.find({
|
||||||
|
order: { createdAt: 'DESC' },
|
||||||
|
take: limit,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get activity statistics
|
||||||
|
*/
|
||||||
|
async getStats(): Promise<{
|
||||||
|
total: number;
|
||||||
|
success: number;
|
||||||
|
error: number;
|
||||||
|
pending: number;
|
||||||
|
avgDurationMs: number;
|
||||||
|
}> {
|
||||||
|
const stats = await this.repository
|
||||||
|
.createQueryBuilder('activity')
|
||||||
|
.select([
|
||||||
|
'COUNT(*) as total',
|
||||||
|
'SUM(CASE WHEN status = \'success\' THEN 1 ELSE 0 END) as success',
|
||||||
|
'SUM(CASE WHEN status = \'error\' THEN 1 ELSE 0 END) as error',
|
||||||
|
'SUM(CASE WHEN status = \'pending\' THEN 1 ELSE 0 END) as pending',
|
||||||
|
'AVG(duration_ms) as avgDurationMs',
|
||||||
|
])
|
||||||
|
.getRawOne();
|
||||||
|
|
||||||
|
return {
|
||||||
|
total: parseInt(stats?.total || '0', 10),
|
||||||
|
success: parseInt(stats?.success || '0', 10),
|
||||||
|
error: parseInt(stats?.error || '0', 10),
|
||||||
|
pending: parseInt(stats?.pending || '0', 10),
|
||||||
|
avgDurationMs: parseFloat(stats?.avgDurationMs || '0'),
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete old activities (cleanup)
|
||||||
|
*/
|
||||||
|
async deleteOlderThan(date: Date): Promise<number> {
|
||||||
|
const result = await this.repository
|
||||||
|
.createQueryBuilder()
|
||||||
|
.delete()
|
||||||
|
.where('created_at < :date', { date })
|
||||||
|
.execute();
|
||||||
|
return result.affected ?? 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Count total activities
|
||||||
|
*/
|
||||||
|
async count(): Promise<number> {
|
||||||
|
return await this.repository.count();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ToolCallActivityRepository;
|
||||||
@@ -7,6 +7,7 @@ import { UserConfigRepository } from './UserConfigRepository.js';
|
|||||||
import { OAuthClientRepository } from './OAuthClientRepository.js';
|
import { OAuthClientRepository } from './OAuthClientRepository.js';
|
||||||
import { OAuthTokenRepository } from './OAuthTokenRepository.js';
|
import { OAuthTokenRepository } from './OAuthTokenRepository.js';
|
||||||
import { BearerKeyRepository } from './BearerKeyRepository.js';
|
import { BearerKeyRepository } from './BearerKeyRepository.js';
|
||||||
|
import { ToolCallActivityRepository } from './ToolCallActivityRepository.js';
|
||||||
|
|
||||||
// Export all repositories
|
// Export all repositories
|
||||||
export {
|
export {
|
||||||
@@ -19,4 +20,5 @@ export {
|
|||||||
OAuthClientRepository,
|
OAuthClientRepository,
|
||||||
OAuthTokenRepository,
|
OAuthTokenRepository,
|
||||||
BearerKeyRepository,
|
BearerKeyRepository,
|
||||||
|
ToolCallActivityRepository,
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -633,274 +633,4 @@ describe('sseService', () => {
|
|||||||
expectBearerUnauthorized(res, 'No authorization provided');
|
expectBearerUnauthorized(res, 'No authorization provided');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('stream parameter support', () => {
|
|
||||||
beforeEach(() => {
|
|
||||||
// Clear transports before each test
|
|
||||||
Object.keys(transports).forEach((key) => delete transports[key]);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should create transport with enableJsonResponse=true when stream=false in body', async () => {
|
|
||||||
const req = createMockRequest({
|
|
||||||
params: { group: 'test-group' },
|
|
||||||
body: {
|
|
||||||
method: 'initialize',
|
|
||||||
stream: false,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
const res = createMockResponse();
|
|
||||||
|
|
||||||
await handleMcpPostRequest(req, res);
|
|
||||||
|
|
||||||
// Check that StreamableHTTPServerTransport was called with enableJsonResponse: true
|
|
||||||
expect(StreamableHTTPServerTransport).toHaveBeenCalledWith(
|
|
||||||
expect.objectContaining({
|
|
||||||
enableJsonResponse: true,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should create transport with enableJsonResponse=false when stream=true in body', async () => {
|
|
||||||
const req = createMockRequest({
|
|
||||||
params: { group: 'test-group' },
|
|
||||||
body: {
|
|
||||||
method: 'initialize',
|
|
||||||
stream: true,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
const res = createMockResponse();
|
|
||||||
|
|
||||||
await handleMcpPostRequest(req, res);
|
|
||||||
|
|
||||||
// Check that StreamableHTTPServerTransport was called with enableJsonResponse: false
|
|
||||||
expect(StreamableHTTPServerTransport).toHaveBeenCalledWith(
|
|
||||||
expect.objectContaining({
|
|
||||||
enableJsonResponse: false,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should create transport with enableJsonResponse=true when stream=false in query', async () => {
|
|
||||||
const req = createMockRequest({
|
|
||||||
params: { group: 'test-group' },
|
|
||||||
query: { stream: 'false' },
|
|
||||||
body: {
|
|
||||||
method: 'initialize',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
const res = createMockResponse();
|
|
||||||
|
|
||||||
await handleMcpPostRequest(req, res);
|
|
||||||
|
|
||||||
// Check that StreamableHTTPServerTransport was called with enableJsonResponse: true
|
|
||||||
expect(StreamableHTTPServerTransport).toHaveBeenCalledWith(
|
|
||||||
expect.objectContaining({
|
|
||||||
enableJsonResponse: true,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should default to enableJsonResponse=false when stream parameter not provided', async () => {
|
|
||||||
const req = createMockRequest({
|
|
||||||
params: { group: 'test-group' },
|
|
||||||
body: {
|
|
||||||
method: 'initialize',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
const res = createMockResponse();
|
|
||||||
|
|
||||||
await handleMcpPostRequest(req, res);
|
|
||||||
|
|
||||||
// Check that StreamableHTTPServerTransport was called with enableJsonResponse: false (default)
|
|
||||||
expect(StreamableHTTPServerTransport).toHaveBeenCalledWith(
|
|
||||||
expect.objectContaining({
|
|
||||||
enableJsonResponse: false,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should prioritize body stream parameter over query parameter', async () => {
|
|
||||||
const req = createMockRequest({
|
|
||||||
params: { group: 'test-group' },
|
|
||||||
query: { stream: 'true' },
|
|
||||||
body: {
|
|
||||||
method: 'initialize',
|
|
||||||
stream: false, // body should take priority
|
|
||||||
},
|
|
||||||
});
|
|
||||||
const res = createMockResponse();
|
|
||||||
|
|
||||||
await handleMcpPostRequest(req, res);
|
|
||||||
|
|
||||||
// Check that StreamableHTTPServerTransport was called with enableJsonResponse: true (from body)
|
|
||||||
expect(StreamableHTTPServerTransport).toHaveBeenCalledWith(
|
|
||||||
expect.objectContaining({
|
|
||||||
enableJsonResponse: true,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should pass enableJsonResponse to createSessionWithId when rebuilding session', async () => {
|
|
||||||
setMockSystemConfig({
|
|
||||||
routing: {
|
|
||||||
enableGlobalRoute: true,
|
|
||||||
enableGroupNameRoute: true,
|
|
||||||
enableBearerAuth: false,
|
|
||||||
bearerAuthKey: 'test-key',
|
|
||||||
},
|
|
||||||
enableSessionRebuild: true,
|
|
||||||
});
|
|
||||||
|
|
||||||
const req = createMockRequest({
|
|
||||||
params: { group: 'test-group' },
|
|
||||||
headers: { 'mcp-session-id': 'invalid-session' },
|
|
||||||
body: {
|
|
||||||
method: 'someMethod',
|
|
||||||
stream: false,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
const res = createMockResponse();
|
|
||||||
|
|
||||||
await handleMcpPostRequest(req, res);
|
|
||||||
|
|
||||||
// Check that StreamableHTTPServerTransport was called with enableJsonResponse: true
|
|
||||||
expect(StreamableHTTPServerTransport).toHaveBeenCalledWith(
|
|
||||||
expect.objectContaining({
|
|
||||||
enableJsonResponse: true,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should handle string "false" in query parameter', async () => {
|
|
||||||
const req = createMockRequest({
|
|
||||||
params: { group: 'test-group' },
|
|
||||||
query: { stream: 'false' },
|
|
||||||
body: {
|
|
||||||
method: 'initialize',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
const res = createMockResponse();
|
|
||||||
|
|
||||||
await handleMcpPostRequest(req, res);
|
|
||||||
|
|
||||||
expect(StreamableHTTPServerTransport).toHaveBeenCalledWith(
|
|
||||||
expect.objectContaining({
|
|
||||||
enableJsonResponse: true,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should handle string "0" in query parameter', async () => {
|
|
||||||
const req = createMockRequest({
|
|
||||||
params: { group: 'test-group' },
|
|
||||||
query: { stream: '0' },
|
|
||||||
body: {
|
|
||||||
method: 'initialize',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
const res = createMockResponse();
|
|
||||||
|
|
||||||
await handleMcpPostRequest(req, res);
|
|
||||||
|
|
||||||
expect(StreamableHTTPServerTransport).toHaveBeenCalledWith(
|
|
||||||
expect.objectContaining({
|
|
||||||
enableJsonResponse: true,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should handle number 0 in body parameter', async () => {
|
|
||||||
const req = createMockRequest({
|
|
||||||
params: { group: 'test-group' },
|
|
||||||
body: {
|
|
||||||
method: 'initialize',
|
|
||||||
stream: 0,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
const res = createMockResponse();
|
|
||||||
|
|
||||||
await handleMcpPostRequest(req, res);
|
|
||||||
|
|
||||||
expect(StreamableHTTPServerTransport).toHaveBeenCalledWith(
|
|
||||||
expect.objectContaining({
|
|
||||||
enableJsonResponse: true,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should handle number 1 in body parameter', async () => {
|
|
||||||
const req = createMockRequest({
|
|
||||||
params: { group: 'test-group' },
|
|
||||||
body: {
|
|
||||||
method: 'initialize',
|
|
||||||
stream: 1,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
const res = createMockResponse();
|
|
||||||
|
|
||||||
await handleMcpPostRequest(req, res);
|
|
||||||
|
|
||||||
expect(StreamableHTTPServerTransport).toHaveBeenCalledWith(
|
|
||||||
expect.objectContaining({
|
|
||||||
enableJsonResponse: false,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should handle "yes" and "no" string values', async () => {
|
|
||||||
// Test "yes"
|
|
||||||
const reqYes = createMockRequest({
|
|
||||||
params: { group: 'test-group' },
|
|
||||||
query: { stream: 'yes' },
|
|
||||||
body: { method: 'initialize' },
|
|
||||||
});
|
|
||||||
const resYes = createMockResponse();
|
|
||||||
|
|
||||||
await handleMcpPostRequest(reqYes, resYes);
|
|
||||||
|
|
||||||
expect(StreamableHTTPServerTransport).toHaveBeenCalledWith(
|
|
||||||
expect.objectContaining({
|
|
||||||
enableJsonResponse: false,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
|
|
||||||
jest.clearAllMocks();
|
|
||||||
|
|
||||||
// Test "no"
|
|
||||||
const reqNo = createMockRequest({
|
|
||||||
params: { group: 'test-group' },
|
|
||||||
query: { stream: 'no' },
|
|
||||||
body: { method: 'initialize' },
|
|
||||||
});
|
|
||||||
const resNo = createMockResponse();
|
|
||||||
|
|
||||||
await handleMcpPostRequest(reqNo, resNo);
|
|
||||||
|
|
||||||
expect(StreamableHTTPServerTransport).toHaveBeenCalledWith(
|
|
||||||
expect.objectContaining({
|
|
||||||
enableJsonResponse: true,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should default to streaming for invalid/unknown values', async () => {
|
|
||||||
const req = createMockRequest({
|
|
||||||
params: { group: 'test-group' },
|
|
||||||
query: { stream: 'invalid-value' },
|
|
||||||
body: {
|
|
||||||
method: 'initialize',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
const res = createMockResponse();
|
|
||||||
|
|
||||||
await handleMcpPostRequest(req, res);
|
|
||||||
|
|
||||||
// Should default to streaming (enableJsonResponse: false)
|
|
||||||
expect(StreamableHTTPServerTransport).toHaveBeenCalledWith(
|
|
||||||
expect.objectContaining({
|
|
||||||
enableJsonResponse: false,
|
|
||||||
}),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -88,6 +88,29 @@ const isBearerKeyAllowedForRequest = async (req: Request, key: BearerKey): Promi
|
|||||||
return groupServerNames.some((name) => allowedServers.includes(name));
|
return groupServerNames.some((name) => allowedServers.includes(name));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (key.accessType === 'custom') {
|
||||||
|
// For custom-scoped keys, check if the group is allowed OR if any server in the group is allowed
|
||||||
|
const allowedGroups = key.allowedGroups || [];
|
||||||
|
const allowedServers = key.allowedServers || [];
|
||||||
|
|
||||||
|
// Check if the group itself is allowed
|
||||||
|
const groupAllowed =
|
||||||
|
allowedGroups.includes(matchedGroup.name) || allowedGroups.includes(matchedGroup.id);
|
||||||
|
if (groupAllowed) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check if any server in the group is allowed
|
||||||
|
if (allowedServers.length > 0 && Array.isArray(matchedGroup.servers)) {
|
||||||
|
const groupServerNames = matchedGroup.servers.map((server) =>
|
||||||
|
typeof server === 'string' ? server : server.name,
|
||||||
|
);
|
||||||
|
return groupServerNames.some((name) => allowedServers.includes(name));
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// Unknown accessType with matched group
|
// Unknown accessType with matched group
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -102,8 +125,8 @@ const isBearerKeyAllowedForRequest = async (req: Request, key: BearerKey): Promi
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (key.accessType === 'servers') {
|
if (key.accessType === 'servers' || key.accessType === 'custom') {
|
||||||
// For server-scoped keys, check if the server is in allowedServers
|
// For server-scoped or custom-scoped keys, check if the server is in allowedServers
|
||||||
const allowedServers = key.allowedServers || [];
|
const allowedServers = key.allowedServers || [];
|
||||||
return allowedServers.includes(matchedServer.name);
|
return allowedServers.includes(matchedServer.name);
|
||||||
}
|
}
|
||||||
@@ -408,10 +431,9 @@ async function createSessionWithId(
|
|||||||
sessionId: string,
|
sessionId: string,
|
||||||
group: string,
|
group: string,
|
||||||
username?: string,
|
username?: string,
|
||||||
enableJsonResponse?: boolean,
|
|
||||||
): Promise<StreamableHTTPServerTransport> {
|
): Promise<StreamableHTTPServerTransport> {
|
||||||
console.log(
|
console.log(
|
||||||
`[SESSION REBUILD] Starting session rebuild for ID: ${sessionId}${username ? ` for user: ${username}` : ''} with enableJsonResponse: ${enableJsonResponse}`,
|
`[SESSION REBUILD] Starting session rebuild for ID: ${sessionId}${username ? ` for user: ${username}` : ''}`,
|
||||||
);
|
);
|
||||||
|
|
||||||
// Create a new server instance to ensure clean state
|
// Create a new server instance to ensure clean state
|
||||||
@@ -419,7 +441,6 @@ async function createSessionWithId(
|
|||||||
|
|
||||||
const transport = new StreamableHTTPServerTransport({
|
const transport = new StreamableHTTPServerTransport({
|
||||||
sessionIdGenerator: () => sessionId, // Use the specified sessionId
|
sessionIdGenerator: () => sessionId, // Use the specified sessionId
|
||||||
enableJsonResponse: enableJsonResponse ?? false,
|
|
||||||
onsessioninitialized: (initializedSessionId) => {
|
onsessioninitialized: (initializedSessionId) => {
|
||||||
console.log(
|
console.log(
|
||||||
`[SESSION REBUILD] onsessioninitialized triggered for ID: ${initializedSessionId}`,
|
`[SESSION REBUILD] onsessioninitialized triggered for ID: ${initializedSessionId}`,
|
||||||
@@ -471,16 +492,14 @@ async function createSessionWithId(
|
|||||||
async function createNewSession(
|
async function createNewSession(
|
||||||
group: string,
|
group: string,
|
||||||
username?: string,
|
username?: string,
|
||||||
enableJsonResponse?: boolean,
|
|
||||||
): Promise<StreamableHTTPServerTransport> {
|
): Promise<StreamableHTTPServerTransport> {
|
||||||
const newSessionId = randomUUID();
|
const newSessionId = randomUUID();
|
||||||
console.log(
|
console.log(
|
||||||
`[SESSION NEW] Creating new session with ID: ${newSessionId}${username ? ` for user: ${username}` : ''} with enableJsonResponse: ${enableJsonResponse}`,
|
`[SESSION NEW] Creating new session with ID: ${newSessionId}${username ? ` for user: ${username}` : ''}`,
|
||||||
);
|
);
|
||||||
|
|
||||||
const transport = new StreamableHTTPServerTransport({
|
const transport = new StreamableHTTPServerTransport({
|
||||||
sessionIdGenerator: () => newSessionId,
|
sessionIdGenerator: () => newSessionId,
|
||||||
enableJsonResponse: enableJsonResponse ?? false,
|
|
||||||
onsessioninitialized: (sessionId) => {
|
onsessioninitialized: (sessionId) => {
|
||||||
transports[sessionId] = { transport, group };
|
transports[sessionId] = { transport, group };
|
||||||
console.log(
|
console.log(
|
||||||
@@ -519,48 +538,8 @@ export const handleMcpPostRequest = async (req: Request, res: Response): Promise
|
|||||||
const sessionId = req.headers['mcp-session-id'] as string | undefined;
|
const sessionId = req.headers['mcp-session-id'] as string | undefined;
|
||||||
const group = req.params.group;
|
const group = req.params.group;
|
||||||
const body = req.body;
|
const body = req.body;
|
||||||
|
|
||||||
// Parse stream parameter from query string or request body
|
|
||||||
// Default to true (SSE streaming) for backward compatibility
|
|
||||||
let enableStreaming = true;
|
|
||||||
|
|
||||||
// Helper function to parse stream parameter value
|
|
||||||
const parseStreamParam = (value: any): boolean => {
|
|
||||||
if (typeof value === 'boolean') {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
if (typeof value === 'string') {
|
|
||||||
const lowerValue = value.toLowerCase().trim();
|
|
||||||
// Accept 'true', '1', 'yes', 'on' as truthy
|
|
||||||
if (['true', '1', 'yes', 'on'].includes(lowerValue)) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
// Accept 'false', '0', 'no', 'off' as falsy
|
|
||||||
if (['false', '0', 'no', 'off'].includes(lowerValue)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (typeof value === 'number') {
|
|
||||||
return value !== 0;
|
|
||||||
}
|
|
||||||
// Default to true for any other value (including undefined)
|
|
||||||
return true;
|
|
||||||
};
|
|
||||||
|
|
||||||
// Check query parameter first
|
|
||||||
if (req.query.stream !== undefined) {
|
|
||||||
enableStreaming = parseStreamParam(req.query.stream);
|
|
||||||
}
|
|
||||||
// Then check request body (has higher priority)
|
|
||||||
if (body && typeof body === 'object' && 'stream' in body) {
|
|
||||||
enableStreaming = parseStreamParam(body.stream);
|
|
||||||
}
|
|
||||||
|
|
||||||
// enableJsonResponse is the inverse of enableStreaming
|
|
||||||
const enableJsonResponse = !enableStreaming;
|
|
||||||
|
|
||||||
console.log(
|
console.log(
|
||||||
`Handling MCP post request for sessionId: ${sessionId} and group: ${group}${username ? ` for user: ${username}` : ''} with enableStreaming: ${enableStreaming}`,
|
`Handling MCP post request for sessionId: ${sessionId} and group: ${group}${username ? ` for user: ${username}` : ''} with body: ${JSON.stringify(body)}`,
|
||||||
);
|
);
|
||||||
|
|
||||||
// Get filtered settings based on user context (after setting user context)
|
// Get filtered settings based on user context (after setting user context)
|
||||||
@@ -603,7 +582,7 @@ export const handleMcpPostRequest = async (req: Request, res: Response): Promise
|
|||||||
);
|
);
|
||||||
transport = await sessionCreationLocks[sessionId];
|
transport = await sessionCreationLocks[sessionId];
|
||||||
} else {
|
} else {
|
||||||
sessionCreationLocks[sessionId] = createSessionWithId(sessionId, group, username, enableJsonResponse);
|
sessionCreationLocks[sessionId] = createSessionWithId(sessionId, group, username);
|
||||||
try {
|
try {
|
||||||
transport = await sessionCreationLocks[sessionId];
|
transport = await sessionCreationLocks[sessionId];
|
||||||
console.log(
|
console.log(
|
||||||
@@ -640,7 +619,7 @@ export const handleMcpPostRequest = async (req: Request, res: Response): Promise
|
|||||||
console.log(
|
console.log(
|
||||||
`[SESSION CREATE] No session ID provided for initialize request, creating new session${username ? ` for user: ${username}` : ''}`,
|
`[SESSION CREATE] No session ID provided for initialize request, creating new session${username ? ` for user: ${username}` : ''}`,
|
||||||
);
|
);
|
||||||
transport = await createNewSession(group, username, enableJsonResponse);
|
transport = await createNewSession(group, username);
|
||||||
} else {
|
} else {
|
||||||
// Case 4: No sessionId and not an initialize request, return error
|
// Case 4: No sessionId and not an initialize request, return error
|
||||||
console.warn(
|
console.warn(
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { getRepositoryFactory } from '../db/index.js';
|
import { getRepositoryFactory } from '../db/index.js';
|
||||||
import { VectorEmbeddingRepository } from '../db/repositories/index.js';
|
import { VectorEmbeddingRepository } from '../db/repositories/index.js';
|
||||||
import { Tool } from '../types/index.js';
|
import { Tool } from '../types/index.js';
|
||||||
import { getAppDataSource, initializeDatabase } from '../db/connection.js';
|
import { getAppDataSource, isDatabaseConnected, initializeDatabase } from '../db/connection.js';
|
||||||
import { getSmartRoutingConfig } from '../utils/smartRouting.js';
|
import { getSmartRoutingConfig } from '../utils/smartRouting.js';
|
||||||
import OpenAI from 'openai';
|
import OpenAI from 'openai';
|
||||||
|
|
||||||
@@ -197,6 +197,12 @@ export const saveToolsAsVectorEmbeddings = async (
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Ensure database is initialized before using repository
|
||||||
|
if (!isDatabaseConnected()) {
|
||||||
|
console.info('Database not initialized, initializing...');
|
||||||
|
await initializeDatabase();
|
||||||
|
}
|
||||||
|
|
||||||
const config = await getOpenAIConfig();
|
const config = await getOpenAIConfig();
|
||||||
const vectorRepository = getRepositoryFactory(
|
const vectorRepository = getRepositoryFactory(
|
||||||
'vectorEmbeddings',
|
'vectorEmbeddings',
|
||||||
@@ -245,7 +251,7 @@ export const saveToolsAsVectorEmbeddings = async (
|
|||||||
|
|
||||||
console.log(`Saved ${tools.length} tool embeddings for server: ${serverName}`);
|
console.log(`Saved ${tools.length} tool embeddings for server: ${serverName}`);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(`Error saving tool embeddings for server ${serverName}:`, error);
|
console.error(`Error saving tool embeddings for server ${serverName}:${error}`);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -244,7 +244,7 @@ export interface OAuthServerConfig {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Bearer authentication key configuration
|
// Bearer authentication key configuration
|
||||||
export type BearerKeyAccessType = 'all' | 'groups' | 'servers';
|
export type BearerKeyAccessType = 'all' | 'groups' | 'servers' | 'custom';
|
||||||
|
|
||||||
export interface BearerKey {
|
export interface BearerKey {
|
||||||
id: string; // Unique identifier for the key
|
id: string; // Unique identifier for the key
|
||||||
@@ -252,8 +252,8 @@ export interface BearerKey {
|
|||||||
token: string; // Bearer token value
|
token: string; // Bearer token value
|
||||||
enabled: boolean; // Whether this key is enabled
|
enabled: boolean; // Whether this key is enabled
|
||||||
accessType: BearerKeyAccessType; // Access scope type
|
accessType: BearerKeyAccessType; // Access scope type
|
||||||
allowedGroups?: string[]; // Allowed group names when accessType === 'groups'
|
allowedGroups?: string[]; // Allowed group names when accessType === 'groups' or 'custom'
|
||||||
allowedServers?: string[]; // Allowed server names when accessType === 'servers'
|
allowedServers?: string[]; // Allowed server names when accessType === 'servers' or 'custom'
|
||||||
}
|
}
|
||||||
|
|
||||||
// Represents the settings for MCP servers
|
// Represents the settings for MCP servers
|
||||||
@@ -481,3 +481,51 @@ export interface BatchCreateGroupsResponse {
|
|||||||
failureCount: number; // Number of groups that failed
|
failureCount: number; // Number of groups that failed
|
||||||
results: BatchGroupResult[]; // Detailed results for each group
|
results: BatchGroupResult[]; // Detailed results for each group
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Tool call activity interface for logging tool invocations (DB mode only)
|
||||||
|
export interface IToolCallActivity {
|
||||||
|
id?: string;
|
||||||
|
serverName: string;
|
||||||
|
toolName: string;
|
||||||
|
keyId?: string;
|
||||||
|
keyName?: string;
|
||||||
|
status: 'pending' | 'success' | 'error';
|
||||||
|
request?: string;
|
||||||
|
response?: string;
|
||||||
|
errorMessage?: string;
|
||||||
|
durationMs?: number;
|
||||||
|
clientIp?: string;
|
||||||
|
sessionId?: string;
|
||||||
|
groupName?: string;
|
||||||
|
createdAt?: Date;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Tool call activity search parameters
|
||||||
|
export interface IToolCallActivitySearchParams {
|
||||||
|
serverName?: string;
|
||||||
|
toolName?: string;
|
||||||
|
keyId?: string;
|
||||||
|
status?: 'pending' | 'success' | 'error';
|
||||||
|
groupName?: string;
|
||||||
|
startDate?: Date;
|
||||||
|
endDate?: Date;
|
||||||
|
searchQuery?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Tool call activity pagination result
|
||||||
|
export interface IToolCallActivityPage {
|
||||||
|
items: IToolCallActivity[];
|
||||||
|
total: number;
|
||||||
|
page: number;
|
||||||
|
pageSize: number;
|
||||||
|
totalPages: number;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Tool call activity statistics
|
||||||
|
export interface IToolCallActivityStats {
|
||||||
|
total: number;
|
||||||
|
success: number;
|
||||||
|
error: number;
|
||||||
|
pending: number;
|
||||||
|
avgDurationMs: number;
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,152 +0,0 @@
|
|||||||
/**
|
|
||||||
* Integration test for stream parameter support
|
|
||||||
* This test demonstrates the usage of stream parameter in MCP requests
|
|
||||||
*/
|
|
||||||
|
|
||||||
import { describe, it, expect } from '@jest/globals';
|
|
||||||
|
|
||||||
describe('Stream Parameter Integration Test', () => {
|
|
||||||
it('should demonstrate stream parameter usage', () => {
|
|
||||||
// Example 1: Using stream=false in query parameter
|
|
||||||
const queryExample = {
|
|
||||||
url: '/mcp?stream=false',
|
|
||||||
method: 'POST',
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
Accept: 'application/json, text/event-stream',
|
|
||||||
},
|
|
||||||
body: {
|
|
||||||
method: 'initialize',
|
|
||||||
params: {
|
|
||||||
protocolVersion: '2025-03-26',
|
|
||||||
capabilities: {},
|
|
||||||
clientInfo: {
|
|
||||||
name: 'TestClient',
|
|
||||||
version: '1.0.0',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
jsonrpc: '2.0',
|
|
||||||
id: 1,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
expect(queryExample.url).toContain('stream=false');
|
|
||||||
|
|
||||||
// Example 2: Using stream parameter in request body
|
|
||||||
const bodyExample = {
|
|
||||||
url: '/mcp',
|
|
||||||
method: 'POST',
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
Accept: 'application/json, text/event-stream',
|
|
||||||
},
|
|
||||||
body: {
|
|
||||||
method: 'initialize',
|
|
||||||
stream: false, // Body parameter
|
|
||||||
params: {
|
|
||||||
protocolVersion: '2025-03-26',
|
|
||||||
capabilities: {},
|
|
||||||
clientInfo: {
|
|
||||||
name: 'TestClient',
|
|
||||||
version: '1.0.0',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
jsonrpc: '2.0',
|
|
||||||
id: 1,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
expect(bodyExample.body.stream).toBe(false);
|
|
||||||
|
|
||||||
// Example 3: Default behavior (streaming enabled)
|
|
||||||
const defaultExample = {
|
|
||||||
url: '/mcp',
|
|
||||||
method: 'POST',
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'application/json',
|
|
||||||
Accept: 'application/json, text/event-stream',
|
|
||||||
},
|
|
||||||
body: {
|
|
||||||
method: 'initialize',
|
|
||||||
params: {
|
|
||||||
protocolVersion: '2025-03-26',
|
|
||||||
capabilities: {},
|
|
||||||
clientInfo: {
|
|
||||||
name: 'TestClient',
|
|
||||||
version: '1.0.0',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
jsonrpc: '2.0',
|
|
||||||
id: 1,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
expect(defaultExample.body).not.toHaveProperty('stream');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should show expected response formats', () => {
|
|
||||||
// Expected response format for stream=false (JSON)
|
|
||||||
const jsonResponse = {
|
|
||||||
jsonrpc: '2.0',
|
|
||||||
result: {
|
|
||||||
protocolVersion: '2025-03-26',
|
|
||||||
capabilities: {
|
|
||||||
tools: {},
|
|
||||||
prompts: {},
|
|
||||||
},
|
|
||||||
serverInfo: {
|
|
||||||
name: 'MCPHub',
|
|
||||||
version: '1.0.0',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
id: 1,
|
|
||||||
};
|
|
||||||
|
|
||||||
expect(jsonResponse).toHaveProperty('jsonrpc');
|
|
||||||
expect(jsonResponse).toHaveProperty('result');
|
|
||||||
|
|
||||||
// Expected response format for stream=true (SSE)
|
|
||||||
const sseResponse = {
|
|
||||||
headers: {
|
|
||||||
'Content-Type': 'text/event-stream',
|
|
||||||
'mcp-session-id': '550e8400-e29b-41d4-a716-446655440000',
|
|
||||||
},
|
|
||||||
body: 'data: {"jsonrpc":"2.0","result":{...},"id":1}\n\n',
|
|
||||||
};
|
|
||||||
|
|
||||||
expect(sseResponse.headers['Content-Type']).toBe('text/event-stream');
|
|
||||||
expect(sseResponse.headers).toHaveProperty('mcp-session-id');
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should demonstrate all route variants', () => {
|
|
||||||
const routes = [
|
|
||||||
{ route: '/mcp?stream=false', description: 'Global route with non-streaming' },
|
|
||||||
{ route: '/mcp/mygroup?stream=false', description: 'Group route with non-streaming' },
|
|
||||||
{ route: '/mcp/myserver?stream=false', description: 'Server route with non-streaming' },
|
|
||||||
{ route: '/mcp/$smart?stream=false', description: 'Smart routing with non-streaming' },
|
|
||||||
];
|
|
||||||
|
|
||||||
routes.forEach((item) => {
|
|
||||||
expect(item.route).toContain('stream=false');
|
|
||||||
expect(item.description).toBeTruthy();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it('should show parameter priority', () => {
|
|
||||||
// Body parameter takes priority over query parameter
|
|
||||||
const mixedExample = {
|
|
||||||
url: '/mcp?stream=true', // Query says stream=true
|
|
||||||
body: {
|
|
||||||
method: 'initialize',
|
|
||||||
stream: false, // Body says stream=false - this takes priority
|
|
||||||
params: {},
|
|
||||||
jsonrpc: '2.0',
|
|
||||||
id: 1,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
// In this case, the effective value should be false (from body)
|
|
||||||
expect(mixedExample.body.stream).toBe(false);
|
|
||||||
expect(mixedExample.url).toContain('stream=true');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
Reference in New Issue
Block a user