- 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
15 lines
336 B
Bash
Executable File
15 lines
336 B
Bash
Executable File
#!/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 |