2026-02-21 03:10:39 +00:00
|
|
|
{
|
|
|
|
|
"name": "@mcpctl/mcpd",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
|
|
|
|
"type": "module",
|
|
|
|
|
"main": "./dist/index.js",
|
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc --build",
|
|
|
|
|
"clean": "rimraf dist",
|
|
|
|
|
"dev": "tsx watch src/index.ts",
|
2026-02-21 13:34:18 +00:00
|
|
|
"start": "node dist/main.js",
|
2026-02-21 03:10:39 +00:00
|
|
|
"test": "vitest",
|
|
|
|
|
"test:run": "vitest run"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@fastify/cors": "^10.0.0",
|
|
|
|
|
"@fastify/helmet": "^12.0.0",
|
|
|
|
|
"@fastify/rate-limit": "^10.0.0",
|
2026-02-21 04:22:01 +00:00
|
|
|
"@mcpctl/db": "workspace:*",
|
2026-02-21 03:10:39 +00:00
|
|
|
"@mcpctl/shared": "workspace:*",
|
2026-02-21 04:26:18 +00:00
|
|
|
"@prisma/client": "^6.0.0",
|
feat: implement v2 3-tier architecture (mcpctl → mcplocal → mcpd)
- 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>
2026-02-22 11:42:06 +00:00
|
|
|
"bcrypt": "^5.1.1",
|
2026-02-21 04:52:12 +00:00
|
|
|
"dockerode": "^4.0.9",
|
2026-02-21 04:22:01 +00:00
|
|
|
"fastify": "^5.0.0",
|
2026-02-22 22:24:35 +00:00
|
|
|
"js-yaml": "^4.1.0",
|
2026-02-21 04:22:01 +00:00
|
|
|
"zod": "^3.24.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
feat: implement v2 3-tier architecture (mcpctl → mcplocal → mcpd)
- 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>
2026-02-22 11:42:06 +00:00
|
|
|
"@types/bcrypt": "^5.0.2",
|
2026-02-21 04:52:12 +00:00
|
|
|
"@types/dockerode": "^4.0.1",
|
2026-02-22 22:24:35 +00:00
|
|
|
"@types/js-yaml": "^4.0.9",
|
2026-02-21 04:22:01 +00:00
|
|
|
"@types/node": "^25.3.0"
|
2026-02-21 03:10:39 +00:00
|
|
|
}
|
|
|
|
|
}
|