Skip to main content
Glama

MCP Server Chart

Official
Dockerfile923 B
FROM node:lts-alpine AS base WORKDIR /app # Create non-root user RUN addgroup -g 1001 -S nodejs && \ adduser -S appuser -u 1001 && \ chown -R appuser:nodejs /app USER appuser # === Download production environment dependencies === FROM base AS deps COPY package*.json ./ RUN npm install --only=prod --no-audit --no-fund --no-optional --ignore-scripts && \ npm cache clean --force FROM base AS builder COPY package*.json ./ RUN npm install --no-audit --no-fund --no-optional --ignore-scripts RUN mkdir -p public COPY . . RUN npm run build # === Build final image === FROM base AS final COPY --from=deps /app/node_modules ./node_modules COPY --from=builder /app/build ./build COPY --from=builder /app/public ./public # If use docker-compose to execute this Dockerfile, this EXPOSE is a good choice. EXPOSE 1122 # Command will be provided by smithery.yaml CMD ["node", "build/index.js", "-t", "streamable"]

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/antvis/mcp-server-chart'

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