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.api•517 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 all dependencies (including dev for building)
RUN npm ci
# Copy source and build
COPY tsconfig.json ./
COPY src/ ./src/
RUN npm run build
# Create volume mount point
VOLUME ["/app/data"]
# Set environment
ENV NODE_ENV=production
ENV CONFIG_DATA_PATH=/app/data
ENV API_PORT=8765
EXPOSE 8765
# Run the API server
CMD ["node", "dist/api.js"]