Skip to main content
Glama
Dockerfile1.05 kB
FROM debian:bookworm-slim ENV DEBIAN_FRONTEND=noninteractive \ PATH="/home/service-user/.local/bin:${PATH}" RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ curl \ git \ libssl-dev \ software-properties-common \ wget \ zlib1g-dev && \ groupadd -r service-user && \ useradd -u 1987 -r -m -g service-user service-user && \ mkdir -p /home/service-user/.local/bin /app && \ chown -R service-user:service-user /home/service-user /app && \ curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && \ apt-get install -y --no-install-recommends nodejs && \ npm install -g mcp-proxy@2.10.6 pnpm@9.15.5 && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* USER service-user WORKDIR /app # Clone from GitHub (Glama.ai pattern) RUN git clone https://github.com/scarecr0w12/discord-mcp . && \ pnpm install && \ pnpm run build # Start the MCP server with mcp-proxy CMD ["mcp-proxy", "node", "--no-warnings", "dist/index.js"]

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/scarecr0w12/discord-mcp'

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