Skip to main content
Glama
Dockerfile1.72 kB
# ============================================================================ # Base stage # ============================================================================ FROM oven/bun:1.2.15 AS base WORKDIR /usr/src/app # ============================================================================ # Install dependencies stage # ============================================================================ FROM base AS install RUN mkdir -p /temp/dev COPY package.json bun.lock /temp/dev/ RUN cd /temp/dev && bun install --frozen-lockfile # Install production dependencies RUN mkdir -p /temp/prod COPY package.json bun.lock /temp/prod/ RUN cd /temp/prod && bun install --frozen-lockfile --production # ============================================================================ # Build stage # ============================================================================ FROM base AS build COPY --from=install /temp/dev/node_modules node_modules COPY . . ENV NODE_ENV=production RUN bun run build # ============================================================================ # Release stage # ============================================================================ FROM base AS release COPY --from=install /temp/prod/node_modules node_modules COPY --from=build /usr/src/app/dist ./dist COPY --from=build /usr/src/app/package.json . # Add OCI source label for better image metadata LABEL org.opencontainers.image.source=https://github.com/koki-develop/todoist-mcp-server LABEL org.opencontainers.image.description="Todoist MCP server for integrating Todoist with AI assistants through the Model Context Protocol" # Run as non-root user USER bun # Run the MCP server ENTRYPOINT ["bun", "run", "dist/index.js"]

Latest Blog Posts

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/koki-develop/todoist-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server