🐺 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

15
start-http.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
# Start MCP server with HTTP transport
export MCP_TRANSPORT=http
export NODE_ENV=production
# Make sure NATS is running
if ! pgrep -x "nats-server" > /dev/null; then
echo "Starting NATS server..."
nats-server -p 4222 > /tmp/nats.log 2>&1 &
sleep 2
fi
echo "Starting MCP server on 127.0.0.1:19017..."
npm start