We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jdh747/todoist-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Use the official Bun image (latest stable)
FROM oven/bun:latest AS base
# Set working directory
WORKDIR /app
# Install dependencies first (for better caching)
COPY package.json bun.lock ./
RUN bun install --frozen-lockfile --production --ignore-scripts
# Copy source code
COPY . .
# Install dev dependencies for build
RUN bun install --frozen-lockfile
# Build the application
RUN bun run build
# Set production environment
ENV NODE_ENV=production
# Make the binary executable
RUN chmod +x build/index.js
# Run the application
CMD ["bun", "run", "start:prod"]