We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Franciskkang/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•611 B
# Streamable HTTP MCP Server Dockerfile
FROM node:20-slim
# Set working directory
WORKDIR /app
# Copy package files first (for better caching)
COPY package*.json ./
# Install ALL dependencies (including devDependencies for TypeScript build)
RUN npm ci
# Copy source files and config
COPY src/ ./src/
COPY tsconfig.json ./
# Build TypeScript
RUN npm run build
# Remove devDependencies after build to reduce image size
RUN npm prune --production
# Expose port for HTTP server
EXPOSE 3000
# Set environment variables
ENV NODE_ENV=production
ENV PORT=3000
# Start the server
CMD ["node", "build/index.js"]