We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Quorralyne/mcp_test_server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•440 B
FROM node:20-alpine
WORKDIR /app
# Copy package files and install dependencies
COPY package*.json ./
RUN npm ci
# Copy source and build
COPY src/ ./src/
COPY tsconfig.json ./
RUN npm run build
RUN chmod +x ./build/index.js
# Create non-root user
RUN addgroup -g 1001 -S nodejs && \
adduser -S mcp -u 1001 -G nodejs
# Change ownership and switch to non-root user
RUN chown -R mcp:nodejs /app
USER mcp
CMD ["node", "build/index.js"]