🐺 Initial commit - Lupul Augmentat MCP Server

- MCP server cu stdio transport pentru performanță maximă
- Tool-uri pentru file operations, HTTP requests, system commands
- Suport NATS pentru comunicare inter-module
- Configurare nginx cu API key auth și SSL
- Arhitectură modulară și extensibilă

🤖 Generated with Claude Code
This commit is contained in:
Claude (Lupul Augmentat)
2025-10-09 06:24:58 +02:00
commit 475f89af74
59 changed files with 12827 additions and 0 deletions

11
start-http.js Executable file
View File

@@ -0,0 +1,11 @@
#!/usr/bin/env node
// Start HTTP server bypassing TypeScript errors
require('ts-node').register({
transpileOnly: true,
compilerOptions: {
module: 'commonjs'
}
});
require('./src/http-server.ts');