We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/darinkishore/Inbox-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•567 B
# ---------- Build stage ----------
FROM node:20-alpine AS build
WORKDIR /app
# 1. install deps first for better cache hits
COPY package*.json ./
RUN npm ci
# 2. copy sources & compile TypeScript → dist/
COPY . .
RUN npm run build
# ---------- Runtime stage ----------
FROM node:20-alpine
WORKDIR /app
# Only bring the compiled JS and production deps
COPY --from=build /app/dist ./dist
COPY package*.json ./
RUN npm ci --omit=dev --ignore-scripts
# Smithery injects the final CMD, but keeping a default helps local `docker run`
CMD ["node", "dist/index.js"]