We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/siddjoshi/kube-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•397 B
# Use official Node.js LTS image
FROM node:20-alpine
# Set working directory
WORKDIR /app
# Install dependencies
COPY package.json package-lock.json ./
RUN npm ci --omit=dev
# Copy source code
COPY . .
# Build TypeScript
RUN npm run build
# Expose port
EXPOSE 3000
# Set environment variable for chunked HTTP transport
ENV MCP_TRANSPORT=http-chunked
# Start the server
CMD ["npm", "start"]