We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dev-brewery/claude-agents-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•444 B
FROM node:20-alpine
WORKDIR /app
# Install dependencies for better-sqlite3
RUN apk add --no-cache python3 make g++
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm ci --only=production
# Copy built files
COPY dist/ ./dist/
COPY data/ ./data/
# Create volume mount point
VOLUME ["/app/data"]
# Set environment
ENV NODE_ENV=production
ENV CONFIG_DATA_PATH=/app/data
# Run the server
CMD ["node", "dist/index.js"]