Files
mcpctl/src/cli/package.json
Michal 03827f11e4 feat: eager vLLM warmup and smart page titles in paginate stage
- Add warmup() to LlmProvider interface for eager subprocess startup
- ManagedVllmProvider.warmup() starts vLLM in background on project load
- ProviderRegistry.warmupAll() triggers all managed providers
- NamedProvider proxies warmup() to inner provider
- paginate stage generates LLM-powered descriptive page titles when
  available, cached by content hash, falls back to generic "Page N"
- project-mcp-endpoint calls warmupAll() on router creation so vLLM
  is loading while the session initializes

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-03 19:07:39 +00:00

38 lines
819 B
JSON

{
"name": "@mcpctl/cli",
"version": "0.0.1",
"private": true,
"type": "module",
"bin": {
"mcpctl": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc --build",
"clean": "rimraf dist",
"dev": "tsx src/index.ts",
"test": "vitest",
"test:run": "vitest run"
},
"dependencies": {
"@inkjs/ui": "^2.0.0",
"@mcpctl/db": "workspace:*",
"@mcpctl/shared": "workspace:*",
"chalk": "^5.4.0",
"commander": "^13.0.0",
"diff": "^8.0.3",
"ink": "^6.8.0",
"inquirer": "^12.0.0",
"js-yaml": "^4.1.0",
"react": "^19.2.4",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/diff": "^8.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14"
}
}