Files
Lupul-Augmentat/package.json
Claude (Lupul Augmentat) 250420e9e2 feat: add SSE server with agent presence system
- Add SSE transport server for remote MCP connections
- Implement API key authentication
- Add agent presence system (register_agent, list_agents)
- Add list_services tool to discover local services
- Refactor messaging for dynamic agent names

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-27 07:27:29 +01:00

61 lines
1.7 KiB
JSON

{
"name": "lupul-augmentat",
"version": "0.1.0",
"description": "🐺 Lupul Augmentat - MCP Server care-i dă superputeri lui Claude",
"main": "dist/server.js",
"scripts": {
"dev": "nodemon --watch src --ext ts --exec ts-node src/server.ts",
"dev:http": "nodemon --watch src --ext ts --exec ts-node src/http-server.ts",
"build": "tsc",
"start": "node dist/server.js",
"start:http": "node dist/http-server.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"typecheck": "tsc --noEmit",
"generate-token": "ts-node src/auth/generate-token.ts"
},
"keywords": [
"mcp",
"claude",
"ai",
"tools"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"@types/ws": "^8.18.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"eventsource": "^4.1.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"nats": "^2.19.0",
"pino": "^8.16.2",
"pino-pretty": "^10.2.3",
"ws": "^8.18.3",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}