Skip to main content
Glama
start-full-mcp-server.sh•917 B
#!/bin/bash # EuConquisto Composer MCP Server - Full System Startup # Includes JWT redirect server + Browser automation MCP server # Change to the project directory cd "$(dirname "$0")" # Set Node.js memory limit export NODE_OPTIONS="--max-old-space-size=4096" # Set production environment export NODE_ENV="production" # Function to cleanup on exit cleanup() { echo "Shutting down servers..." kill $JWT_PID 2>/dev/null kill $MCP_PID 2>/dev/null exit 0 } # Setup signal handlers trap cleanup SIGINT SIGTERM # Start JWT redirect server in background echo "Starting JWT redirect server..." node tools/servers/jwt-redirect-server-v1.0.2.js & JWT_PID=$! # Wait a moment for JWT server to start sleep 2 # Start MCP server with browser automation echo "Starting MCP server with browser automation..." npx tsx src/browser-automation-mcp-server.ts & MCP_PID=$! # Wait for both processes wait $MCP_PID

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/rkm097git/euconquisto-composer-mcp-poc'

If you have feedback or need assistance with the MCP directory API, please join our Discord server