- 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>
26 lines
572 B
JSON
26 lines
572 B
JSON
{
|
|
"name": "@mcpctl/mcplocal",
|
|
"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",
|
|
"start": "node dist/index.js",
|
|
"test": "vitest",
|
|
"test:run": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/cors": "^10.0.0",
|
|
"@mcpctl/shared": "workspace:*",
|
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
"fastify": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.3.0"
|
|
}
|
|
}
|