We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jorekai/db-timetable-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•474 B
FROM node:25-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
COPY tsconfig.json ./
# Install all dependencies (including dev dependencies for build)
RUN npm install
# Copy source files
COPY . .
# Build TypeScript
RUN npm run build
# Remove dev dependencies after build to reduce image size
RUN npm prune --production
# Set environment variables
ENV NODE_ENV=production
ENV TRANSPORT_TYPE=stdio
# Run in production mode
CMD ["node", "dist/index.js"]