FROM node:22-alpine AS builder
WORKDIR /app
COPY package.json package-lock.json tsconfig.json ./
COPY src ./src
RUN --mount=type=cache,target=/root/.npm npm ci
RUN npm run build
FROM node:22-alpine
WORKDIR /app
# Copy built application from the builder stage
COPY --from=builder /app/dist ./dist
COPY package.json package-lock.json ./
# Install only production dependencies
RUN npm ci --omit=dev
# Set environment variables (these will be overridden at runtime)
ENV KIBELA_TEAM=your-team
ENV KIBELA_TOKEN=your-token
EXPOSE 3000
# Command to run the executable
ENTRYPOINT ["node", "dist/index.js"]
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kj455/mcp-kibela'
If you have feedback or need assistance with the MCP directory API, please join our Discord server