We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/patrikmichi/storyblok-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Dockerfile•444 B
# Build stage
FROM node:18-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
# Production stage
FROM node:18-alpine AS production
WORKDIR /app
COPY package*.json ./
RUN npm install --omit=dev
COPY --from=builder /app/dist ./dist
# Standard port for SSE mode
ENV PORT=3000
EXPOSE 3000
# Default to SSE mode for containerized deployments
ENV MCP_TRANSPORT=sse
CMD ["node", "dist/index.js"]