Skip to main content
Glama

Linear MCP Integration Server

by MadeByNando
docker-entrypoint.sh688 B
#!/bin/sh set -e # Start the MCP server in the background node dist/server.js & SERVER_PID=$! # Function to handle termination signals cleanup() { echo "Stopping MCP server..." kill $SERVER_PID exit 0 } # Set up signal trapping trap cleanup SIGTERM SIGINT # Keep the container running echo "MCP server running with PID $SERVER_PID" echo "Container will stay alive. Use Ctrl+C to stop." # Wait indefinitely while true; do # Check if server is still running if ! kill -0 $SERVER_PID 2>/dev/null; then echo "MCP server process has stopped. Restarting..." node dist/server.js & SERVER_PID=$! echo "MCP server restarted with PID $SERVER_PID" fi sleep 5 done

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/MadeByNando/MCP-linear-Server'

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