- Rename local-proxy to mcplocal with HTTP server, LLM pipeline, mcpd discovery - Add LLM pre-processing: token estimation, filter cache, metrics, Gemini CLI + DeepSeek providers - Add mcpd auth (login/logout) and MCP proxy endpoints - Update CLI: dual URLs (mcplocalUrl/mcpdUrl), auth commands, --direct flag - Add tiered health monitoring, shell completions, e2e integration tests - 57 test files, 597 tests passing Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
160 B
TypeScript
10 lines
160 B
TypeScript
import { defineWorkspace } from 'vitest/config';
|
|
|
|
export default defineWorkspace([
|
|
'src/shared',
|
|
'src/db',
|
|
'src/cli',
|
|
'src/mcpd',
|
|
'src/mcplocal',
|
|
]);
|