We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/eznix86/mcp-gateway'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•397 B
FROM oven/bun:1-alpine
RUN adduser -D -s /bin/sh gateway
WORKDIR /app
COPY package.json bun.lock ./
RUN bun install
COPY . .
RUN bun build src/docker.ts --target=bun --outfile=/app/gateway
# Create config directory for non-root user
RUN mkdir -p /home/gateway/.config/mcp-gateway && chown -R gateway:gateway /home/gateway
# Use non-root user
USER gateway
EXPOSE 3000
CMD ["/app/gateway"]