Skip to main content
Glama
KVerduyn
by KVerduyn
Dockerfile760 B
FROM node:18-alpine # Install curl for health checks RUN apk add --no-cache curl WORKDIR /app # Copy package files COPY package*.json ./ # Install dependencies RUN npm ci --only=production # Copy source code COPY src/ ./src/ COPY tsconfig.json ./ COPY ["kalender 2019_2028.csv", "./"] # Install dev dependencies for building RUN npm install typescript tsx --save-dev # Build the application RUN npm run build # Remove dev dependencies to reduce image size RUN npm prune --production # Expose port EXPOSE 3000 # Health check HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ CMD curl -f http://localhost:3000/health || exit 1 # Start the MCP Streamable HTTP server (LibreChat compatible) CMD ["npm", "run", "start:streamable"]

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/KVerduyn/School_MCP'

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